osem-fcy/app/controllers/conference_controller.rb
2014-07-30 09:40:20 +03:00

12 lines
279 B
Ruby

class ConferenceController < ApplicationController
load_and_authorize_resource find_by: :short_title
def show
not_found unless @conference.make_conference_public?
end
def gallery_photos
@photos = @conference.photos
render "photos", formats: [:js]
end
end