2014-05-19 21:21:06 +05:30
|
|
|
class ConferenceController < ApplicationController
|
|
|
|
|
def show
|
|
|
|
|
@conference = Conference.find_by_short_title(params[:id])
|
2014-06-17 00:47:49 +05:30
|
|
|
not_found unless @conference.make_conference_public?
|
2014-05-19 21:21:06 +05:30
|
|
|
end
|
2014-06-30 19:24:26 +05:30
|
|
|
|
2014-07-02 00:25:09 +05:30
|
|
|
def gallery_photos
|
|
|
|
|
@photos = Conference.find_by_short_title(params[:id]).photos
|
2014-06-30 20:32:34 +05:30
|
|
|
render "photos", formats: [:js]
|
2014-06-30 19:24:26 +05:30
|
|
|
end
|
2014-05-19 21:21:06 +05:30
|
|
|
end
|