osem-fcy/app/controllers/survey_controller.rb

13 lines
226 B
Ruby
Raw Normal View History

class SurveyController < ApplicationController
load_resource :conference, find_by: :short_title
load_and_authorize_resource
def show
2016-06-30 17:28:07 +02:00
@survey_submission = @survey.survey_submissions.new
end
def reply
end
end