osem-fcy/app/controllers/survey_controller.rb
2016-06-30 17:28:07 +02:00

12 lines
226 B
Ruby

class SurveyController < ApplicationController
load_resource :conference, find_by: :short_title
load_and_authorize_resource
def show
@survey_submission = @survey.survey_submissions.new
end
def reply
end
end