clarion/app/controllers/management/call_for_participations_con...

14 lines
296 B
Ruby

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