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
|
|
|
|
|
end
|