2014-05-19 21:21:06 +05:30
|
|
|
class ConferenceController < ApplicationController
|
2014-08-12 11:51:59 +03:00
|
|
|
load_and_authorize_resource find_by: :short_title
|
|
|
|
|
|
2014-09-15 19:02:02 +05:30
|
|
|
def show
|
|
|
|
|
@keynote_speakers = @conference.keynote_speakers
|
|
|
|
|
end
|
2014-06-30 19:24:26 +05:30
|
|
|
|
2014-07-02 00:25:09 +05:30
|
|
|
def gallery_photos
|
2014-08-12 11:51:59 +03:00
|
|
|
@photos = @conference.photos
|
2014-08-18 21:54:43 +03:00
|
|
|
render 'photos', formats: [:js]
|
2014-06-30 19:24:26 +05:30
|
|
|
end
|
2014-05-19 21:21:06 +05:30
|
|
|
end
|