2014-05-19 21:21:06 +05:30
|
|
|
class ConferenceController < ApplicationController
|
|
|
|
|
def show
|
|
|
|
|
@conference = Conference.find_by_short_title(params[:id])
|
2014-08-03 11:27:54 +05:30
|
|
|
redirect_to root_path, notice: "Conference not ready yet!!" 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
|