osem-fcy/app/controllers/conference_controller.rb
Gopesh Tulsyan 2b94ba0281 Adds routing error check in conference#show
Adds make_conference_public to conference factory

Added test
2014-06-19 22:17:32 +05:30

6 lines
191 B
Ruby

class ConferenceController < ApplicationController
def show
@conference = Conference.find_by_short_title(params[:id])
not_found unless @conference.make_conference_public?
end
end