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
|
|
|
|
|
|
|
|
def fetch_gallery_photos
|
|
|
|
|
@photos = Conference.find(params[:id].to_i).photos
|
|
|
|
|
render 'photos', formats: [:js]
|
|
|
|
|
end
|
2014-05-19 21:21:06 +05:30
|
|
|
end
|