clarion/app/controllers/management/feedback_controller.rb

14 lines
228 B
Ruby

module Management
class FeedbackController < ManagementController
def index
@conference = find_conference
end
private
def find_conference
Conference.find(params[:conference_id])
end
end
end