2015-05-24 01:15:46 +03:00
|
|
|
module Management
|
|
|
|
class CallForParticipationsController < ManagementController
|
|
|
|
def create
|
2015-07-12 11:05:38 +03:00
|
|
|
current_conference.call_for_participation.open!
|
2019-04-28 02:12:54 +03:00
|
|
|
redirect_back fallback_location: [:management, current_conference]
|
2015-05-24 01:15:46 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
2015-07-12 11:05:38 +03:00
|
|
|
current_conference.call_for_participation.close!
|
2019-04-28 02:12:54 +03:00
|
|
|
redirect_back fallback_location: [:management, current_conference]
|
2015-05-24 01:15:46 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|