clarion/app/controllers/management/feedback_controller.rb
2022-10-19 00:57:37 +03:00

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