2015-09-23 19:20:03 +02:00
|
|
|
class Users::RecapitulatifController < UsersController
|
2016-01-26 15:52:05 +01:00
|
|
|
before_action only: [:show] do
|
|
|
|
authorized_routes? self.class
|
|
|
|
end
|
2016-01-25 15:54:21 +01:00
|
|
|
|
2015-08-10 11:05:06 +02:00
|
|
|
def show
|
2015-12-24 15:10:20 +01:00
|
|
|
create_dossier_facade
|
2015-08-10 11:05:06 +02:00
|
|
|
end
|
2015-09-24 16:51:14 +02:00
|
|
|
|
2015-11-02 15:31:15 +01:00
|
|
|
def initiate
|
2015-12-24 15:10:20 +01:00
|
|
|
create_dossier_facade
|
2015-09-24 16:51:14 +02:00
|
|
|
|
2017-12-05 17:12:56 +01:00
|
|
|
@facade.dossier.en_construction!
|
2015-09-24 16:51:14 +02:00
|
|
|
flash.notice = 'Dossier soumis avec succès.'
|
|
|
|
|
2017-01-02 09:34:28 +01:00
|
|
|
redirect_to users_dossier_recapitulatif_path
|
2015-09-24 16:51:14 +02:00
|
|
|
end
|
|
|
|
|
2016-01-26 15:52:05 +01:00
|
|
|
def self.route_authorization
|
|
|
|
{
|
2018-01-15 19:02:12 +01:00
|
|
|
states: [:en_construction, :en_instruction, :sans_suite, :accepte, :refuse]
|
2016-01-26 15:52:05 +01:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2015-12-24 15:10:20 +01:00
|
|
|
private
|
|
|
|
|
|
|
|
def create_dossier_facade
|
|
|
|
@facade = DossierFacades.new current_user_dossier.id, current_user.email
|
|
|
|
|
|
|
|
rescue ActiveRecord::RecordNotFound
|
|
|
|
flash.alert = t('errors.messages.dossier_not_found')
|
|
|
|
redirect_to url_for(root_path)
|
|
|
|
end
|
2015-08-10 11:05:06 +02:00
|
|
|
end
|