clarion/app/controllers/management/call_for_participations_controller.rb
2015-07-12 11:05:38 +03:00

14 lines
290 B
Ruby

module Management
class CallForParticipationsController < ManagementController
def create
current_conference.call_for_participation.open!
render :redraw
end
def destroy
current_conference.call_for_participation.close!
render :redraw
end
end
end