feat(file retrieval): basic UI skeleton
This commit is contained in:
parent
a60a082ec5
commit
b7c48acf86
7 changed files with 112 additions and 0 deletions
36
app/controllers/recoveries_controller.rb
Normal file
36
app/controllers/recoveries_controller.rb
Normal file
|
@ -0,0 +1,36 @@
|
|||
class RecoveriesController < ApplicationController
|
||||
def nature
|
||||
end
|
||||
|
||||
def post_nature
|
||||
if nature_params == 'collectivite'
|
||||
redirect_to identification_recovery_path
|
||||
else
|
||||
redirect_to support_recovery_path
|
||||
end
|
||||
end
|
||||
|
||||
def identification
|
||||
end
|
||||
|
||||
def post_identification
|
||||
redirect_to selection_recovery_path
|
||||
end
|
||||
|
||||
def selection
|
||||
end
|
||||
|
||||
def post_selection
|
||||
redirect_to terminee_recovery_path
|
||||
end
|
||||
|
||||
def terminee
|
||||
end
|
||||
|
||||
def support
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def nature_params = params[:nature]
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue