osem-fcy/app/controllers/conference_controller.rb

13 lines
279 B
Ruby
Raw Normal View History

class ConferenceController < ApplicationController
2014-07-11 18:54:51 +03:00
load_and_authorize_resource find_by: :short_title
def show
not_found unless @conference.make_conference_public?
end
2014-06-30 19:24:26 +05:30
def gallery_photos
2014-07-11 18:54:51 +03:00
@photos = @conference.photos
2014-06-30 20:32:34 +05:30
render "photos", formats: [:js]
2014-06-30 19:24:26 +05:30
end
end