2015-08-10 11:05:06 +02:00
|
|
|
Rails.application.routes.draw do
|
2018-07-31 11:48:58 +02:00
|
|
|
#
|
|
|
|
# Manager
|
|
|
|
#
|
|
|
|
|
2018-01-16 17:24:09 +01:00
|
|
|
get 'manager/sign_in' => 'administrations/sessions#new'
|
|
|
|
delete 'manager/sign_out' => 'administrations/sessions#destroy'
|
2017-12-28 19:44:11 +01:00
|
|
|
namespace :manager do
|
2018-01-10 16:46:12 +01:00
|
|
|
resources :procedures, only: [:index, :show] do
|
2018-01-10 17:42:21 +01:00
|
|
|
post 'whitelist', on: :member
|
2018-01-10 16:46:12 +01:00
|
|
|
end
|
|
|
|
|
2018-07-02 11:46:04 +02:00
|
|
|
resources :dossiers, only: [:index, :show] do
|
|
|
|
post 'change_state_to_instruction', on: :member
|
|
|
|
end
|
|
|
|
|
2018-01-18 10:04:34 +01:00
|
|
|
resources :administrateurs, only: [:index, :show, :new, :create] do
|
|
|
|
post 'reinvite', on: :member
|
2018-04-26 14:40:03 +02:00
|
|
|
put 'enable_feature', on: :member
|
2018-01-18 10:04:34 +01:00
|
|
|
end
|
2017-12-28 19:44:11 +01:00
|
|
|
|
2018-07-17 12:10:56 +02:00
|
|
|
resources :users, only: [:index, :show] do
|
|
|
|
post 'resend_confirmation_instructions', on: :member
|
|
|
|
post 'confirm', on: :member
|
|
|
|
end
|
|
|
|
|
2018-06-14 16:41:10 +02:00
|
|
|
resources :gestionnaires, only: [:index, :show] do
|
|
|
|
post 'reinvite', on: :member
|
|
|
|
end
|
|
|
|
|
2018-05-31 15:18:06 +02:00
|
|
|
resources :dossiers, only: [:show]
|
|
|
|
|
2018-03-20 16:33:51 +01:00
|
|
|
resources :demandes, only: [:index]
|
2018-03-21 10:28:17 +01:00
|
|
|
post 'demandes/create_administrateur'
|
2018-03-27 13:32:14 +02:00
|
|
|
post 'demandes/refuse_administrateur'
|
2018-03-20 16:33:51 +01:00
|
|
|
|
2018-01-16 16:58:52 +01:00
|
|
|
authenticate :administration do
|
2018-04-18 12:22:33 +02:00
|
|
|
mount Flipflop::Engine => "/features"
|
2018-01-16 16:58:52 +01:00
|
|
|
match "/delayed_job" => DelayedJobWeb, :anchor => false, :via => [:get, :post]
|
|
|
|
end
|
|
|
|
|
2018-01-16 18:09:01 +01:00
|
|
|
root to: "administrateurs#index"
|
2017-12-28 19:44:11 +01:00
|
|
|
end
|
|
|
|
|
2018-07-31 11:48:58 +02:00
|
|
|
#
|
|
|
|
# Monitoring
|
|
|
|
#
|
|
|
|
|
2018-01-16 13:34:24 +01:00
|
|
|
get "/ping" => "ping#index", :constraints => { :ip => /127.0.0.1/ }
|
2016-06-01 15:07:27 +02:00
|
|
|
|
2018-07-31 11:48:58 +02:00
|
|
|
#
|
|
|
|
# Authentication
|
|
|
|
#
|
|
|
|
|
2017-12-20 15:27:33 +01:00
|
|
|
devise_for :administrations,
|
2017-12-21 11:41:44 +01:00
|
|
|
skip: [:password, :registrations, :sessions],
|
|
|
|
controllers: {
|
|
|
|
omniauth_callbacks: 'administrations/omniauth_callbacks'
|
|
|
|
}
|
2016-02-23 16:51:24 +01:00
|
|
|
|
2015-10-23 16:19:55 +02:00
|
|
|
devise_for :administrateurs, controllers: {
|
2018-01-15 19:02:12 +01:00
|
|
|
sessions: 'administrateurs/sessions'
|
|
|
|
}, skip: [:password, :registrations]
|
2015-09-23 10:02:01 +02:00
|
|
|
|
2015-09-22 10:15:12 +02:00
|
|
|
devise_for :gestionnaires, controllers: {
|
2018-01-15 19:02:12 +01:00
|
|
|
sessions: 'gestionnaires/sessions',
|
|
|
|
passwords: 'gestionnaires/passwords'
|
|
|
|
}, skip: [:registrations]
|
2015-08-10 11:05:06 +02:00
|
|
|
|
2015-10-23 16:19:55 +02:00
|
|
|
devise_for :users, controllers: {
|
2018-01-15 19:02:12 +01:00
|
|
|
sessions: 'users/sessions',
|
|
|
|
registrations: 'users/registrations',
|
2018-05-22 17:11:48 +02:00
|
|
|
passwords: 'users/passwords',
|
|
|
|
confirmations: 'users/confirmations'
|
2018-01-15 19:02:12 +01:00
|
|
|
}
|
2015-11-16 16:16:08 +01:00
|
|
|
|
2016-02-15 17:13:16 +01:00
|
|
|
devise_scope :user do
|
2017-11-10 18:01:40 +01:00
|
|
|
get '/users/sign_in/demo' => redirect("/users/sign_in")
|
2016-05-26 15:59:50 +02:00
|
|
|
get '/users/no_procedure' => 'users/sessions#no_procedure'
|
2016-02-15 17:13:16 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
devise_scope :gestionnaire do
|
2017-11-10 18:01:40 +01:00
|
|
|
get '/gestionnaires/sign_in/demo' => redirect("/users/sign_in")
|
2016-06-14 15:30:23 +02:00
|
|
|
get '/gestionnaires/edit' => 'gestionnaires/registrations#edit', :as => 'edit_gestionnaires_registration'
|
|
|
|
put '/gestionnaires' => 'gestionnaires/registrations#update', :as => 'gestionnaires_registration'
|
2016-02-15 17:13:16 +01:00
|
|
|
end
|
|
|
|
|
2016-02-19 17:27:14 +01:00
|
|
|
devise_scope :administrateur do
|
2017-11-10 18:01:40 +01:00
|
|
|
get '/administrateurs/sign_in/demo' => redirect("/users/sign_in")
|
2016-02-19 17:27:14 +01:00
|
|
|
end
|
2016-02-15 17:13:16 +01:00
|
|
|
|
2018-07-31 11:48:58 +02:00
|
|
|
#
|
|
|
|
# Main routes
|
|
|
|
#
|
|
|
|
|
2015-10-26 16:10:38 +01:00
|
|
|
root 'root#index'
|
2018-08-10 15:18:57 +02:00
|
|
|
get '/administration' => 'root#administration'
|
2015-10-05 16:42:29 +02:00
|
|
|
|
2016-09-06 11:07:26 +02:00
|
|
|
get 'users' => 'users#index'
|
|
|
|
get 'admin' => 'admin#index'
|
|
|
|
|
2018-08-13 14:46:22 +02:00
|
|
|
get '/stats' => 'stats#index'
|
|
|
|
get '/stats/download' => 'stats#download'
|
2018-02-26 14:42:56 +01:00
|
|
|
resources :accessibilite, only: [:index]
|
2018-05-24 16:40:39 +02:00
|
|
|
resources :demandes, only: [:new, :create]
|
2017-03-24 18:04:37 +01:00
|
|
|
|
2015-12-18 12:01:26 +01:00
|
|
|
namespace :france_connect do
|
2015-12-24 10:03:06 +01:00
|
|
|
get 'particulier' => 'particulier#login'
|
|
|
|
get 'particulier/callback' => 'particulier#callback'
|
2015-12-18 12:01:26 +01:00
|
|
|
end
|
2015-08-10 11:05:06 +02:00
|
|
|
|
2018-04-03 17:53:14 +02:00
|
|
|
namespace :champs do
|
|
|
|
get ':champ_id/siret' => 'siret#index', as: 'siret'
|
|
|
|
end
|
|
|
|
|
2018-07-31 11:48:58 +02:00
|
|
|
namespace :commencer do
|
|
|
|
get '/test/:procedure_path' => '/users/dossiers#commencer_test', as: :test
|
|
|
|
get '/:procedure_path' => '/users/dossiers#commencer'
|
|
|
|
end
|
|
|
|
|
|
|
|
get "patron" => "root#patron"
|
|
|
|
|
|
|
|
#
|
|
|
|
# Deprecated UI
|
|
|
|
#
|
|
|
|
|
2015-09-23 19:20:03 +02:00
|
|
|
namespace :users do
|
2016-02-08 18:16:18 +01:00
|
|
|
namespace :dossiers do
|
|
|
|
resources :invites, only: [:index, :show]
|
|
|
|
|
|
|
|
post '/commentaire' => 'commentaires#create'
|
|
|
|
end
|
|
|
|
|
2015-09-23 19:20:03 +02:00
|
|
|
resources :dossiers do
|
2016-10-05 14:28:10 +02:00
|
|
|
get '/add_siret' => 'dossiers/add_siret#show'
|
|
|
|
|
2016-03-22 17:36:36 +01:00
|
|
|
patch 'pieces_justificatives' => 'description#pieces_justificatives'
|
|
|
|
|
2015-09-23 19:20:03 +02:00
|
|
|
get '/recapitulatif' => 'recapitulatif#show'
|
2015-11-02 15:31:15 +01:00
|
|
|
post '/recapitulatif/initiate' => 'recapitulatif#initiate'
|
2016-03-22 17:36:36 +01:00
|
|
|
|
2015-09-23 19:20:03 +02:00
|
|
|
post '/commentaire' => 'commentaires#create'
|
2015-09-28 18:55:16 +02:00
|
|
|
|
|
|
|
get '/carte/position' => 'carte#get_position'
|
2015-11-25 10:26:55 +01:00
|
|
|
post '/carte/qp' => 'carte#get_qp'
|
2016-01-15 11:53:00 +01:00
|
|
|
post '/carte/cadastre' => 'carte#get_cadastre'
|
|
|
|
|
2015-09-28 18:55:16 +02:00
|
|
|
get '/carte' => 'carte#show'
|
2015-11-25 17:05:14 +01:00
|
|
|
post '/carte' => 'carte#save'
|
2015-09-28 18:55:16 +02:00
|
|
|
|
2015-11-27 13:56:54 +01:00
|
|
|
put '/archive' => 'dossiers#archive'
|
2016-06-20 13:57:57 +02:00
|
|
|
|
|
|
|
post '/siret_informations' => 'dossiers#siret_informations'
|
|
|
|
put '/change_siret' => 'dossiers#change_siret'
|
2017-03-28 13:17:58 +02:00
|
|
|
|
2017-04-26 16:15:48 +02:00
|
|
|
get 'text_summary' => 'dossiers#text_summary'
|
2015-09-23 19:20:03 +02:00
|
|
|
end
|
2018-07-03 13:35:32 +02:00
|
|
|
|
|
|
|
resource 'dossiers'
|
|
|
|
|
|
|
|
# Redirection of legacy "/users/dossiers" route to "/dossiers"
|
|
|
|
get 'dossiers', to: redirect('/dossiers')
|
2015-09-23 19:20:03 +02:00
|
|
|
end
|
2015-08-10 11:05:06 +02:00
|
|
|
|
2018-04-27 12:29:01 +02:00
|
|
|
namespace :gestionnaire do
|
|
|
|
get 'activate' => '/gestionnaires/activate#new'
|
|
|
|
patch 'activate' => '/gestionnaires/activate#create'
|
|
|
|
end
|
|
|
|
|
2015-10-23 16:19:55 +02:00
|
|
|
namespace :admin do
|
2018-01-11 14:18:17 +01:00
|
|
|
get 'activate' => '/administrateurs/activate#new'
|
|
|
|
patch 'activate' => '/administrateurs/activate#create'
|
2015-10-23 16:19:55 +02:00
|
|
|
get 'sign_in' => '/administrateurs/sessions#new'
|
2015-11-27 16:23:02 +01:00
|
|
|
get 'procedures/archived' => 'procedures#archived'
|
2016-06-09 17:49:38 +02:00
|
|
|
get 'procedures/draft' => 'procedures#draft'
|
2016-06-24 16:41:44 +02:00
|
|
|
get 'procedures/path_list' => 'procedures#path_list'
|
2015-12-14 17:25:35 +01:00
|
|
|
get 'profile' => 'profile#show', as: :profile
|
2017-12-26 18:30:36 +01:00
|
|
|
post 'renew_api_token' => 'profile#renew_api_token', as: :renew_api_token
|
2016-05-20 15:36:38 +02:00
|
|
|
|
2017-01-10 17:29:38 +01:00
|
|
|
get 'change_dossier_state' => 'change_dossier_state#index'
|
|
|
|
post 'change_dossier_state' => 'change_dossier_state#check'
|
|
|
|
patch 'change_dossier_state' => 'change_dossier_state#change'
|
|
|
|
|
2015-10-26 15:54:20 +01:00
|
|
|
resources :procedures do
|
2018-01-04 18:36:45 +01:00
|
|
|
collection do
|
|
|
|
get 'new_from_existing' => 'procedures#new_from_existing', as: :new_from_existing
|
|
|
|
end
|
|
|
|
|
2017-06-28 18:18:51 +02:00
|
|
|
member do
|
|
|
|
post :hide
|
2018-05-31 11:15:44 +02:00
|
|
|
delete :delete_deliberation
|
2017-06-28 18:18:51 +02:00
|
|
|
end
|
|
|
|
|
2016-08-03 18:19:56 +02:00
|
|
|
resources :types_de_champ, only: [:destroy]
|
2015-11-18 19:03:51 +01:00
|
|
|
resource :types_de_champ, only: [:show, :update] do
|
2015-11-19 15:21:18 +01:00
|
|
|
post '/:index/move_up' => 'types_de_champ#move_up', as: :move_up
|
|
|
|
post '/:index/move_down' => 'types_de_champ#move_down', as: :move_down
|
2015-11-18 19:03:51 +01:00
|
|
|
end
|
2016-08-03 18:19:56 +02:00
|
|
|
|
|
|
|
resources :types_de_champ_private, only: [:destroy]
|
|
|
|
resource :types_de_champ_private, only: [:show, :update] do
|
|
|
|
post '/:index/move_up' => 'types_de_champ_private#move_up', as: :move_up
|
|
|
|
post '/:index/move_down' => 'types_de_champ_private#move_down', as: :move_down
|
|
|
|
end
|
|
|
|
|
|
|
|
resource :pieces_justificatives, only: [:show, :update]
|
|
|
|
resources :pieces_justificatives, only: :destroy
|
2016-06-08 16:45:18 +02:00
|
|
|
resource :pieces_justificatives, only: [:show, :update] do
|
|
|
|
post '/:index/move_up' => 'pieces_justificatives#move_up', as: :move_up
|
|
|
|
post '/:index/move_down' => 'pieces_justificatives#move_down', as: :move_down
|
|
|
|
end
|
2015-11-26 18:41:41 +01:00
|
|
|
|
2017-01-24 14:36:43 +01:00
|
|
|
resources :mail_templates, only: [:index, :edit, :update]
|
2016-08-31 16:07:11 +02:00
|
|
|
|
2015-11-27 17:13:06 +01:00
|
|
|
put 'archive' => 'procedures#archive', as: :archive
|
2016-06-09 17:49:38 +02:00
|
|
|
put 'publish' => 'procedures#publish', as: :publish
|
2016-07-22 11:34:34 +02:00
|
|
|
post 'transfer' => 'procedures#transfer', as: :transfer
|
2016-06-15 11:34:05 +02:00
|
|
|
put 'clone' => 'procedures#clone', as: :clone
|
2015-11-26 18:41:41 +01:00
|
|
|
|
2016-05-20 15:36:38 +02:00
|
|
|
resource :accompagnateurs, only: [:show, :update]
|
|
|
|
|
2017-06-30 12:59:53 +02:00
|
|
|
resource :attestation_template, only: [:edit, :update, :create]
|
2017-06-09 13:28:47 +02:00
|
|
|
|
|
|
|
post 'attestation_template/disactivate' => 'attestation_templates#disactivate'
|
|
|
|
patch 'attestation_template/disactivate' => 'attestation_templates#disactivate'
|
2017-05-31 17:39:15 +02:00
|
|
|
|
|
|
|
post 'attestation_template/preview' => 'attestation_templates#preview'
|
|
|
|
patch 'attestation_template/preview' => 'attestation_templates#preview'
|
2015-10-26 15:54:20 +01:00
|
|
|
end
|
2016-05-20 15:36:38 +02:00
|
|
|
|
2016-05-24 16:39:39 +02:00
|
|
|
namespace :accompagnateurs do
|
2018-01-15 19:14:09 +01:00
|
|
|
get 'show' # delete after fixed tests admin/accompagnateurs/show_spec without this line
|
2016-05-24 16:39:39 +02:00
|
|
|
end
|
2016-05-20 15:36:38 +02:00
|
|
|
|
2016-02-09 12:23:49 +01:00
|
|
|
resources :gestionnaires, only: [:index, :create, :destroy]
|
2015-10-23 16:19:55 +02:00
|
|
|
end
|
2015-09-22 10:15:12 +02:00
|
|
|
|
2018-07-31 11:48:58 +02:00
|
|
|
#
|
|
|
|
# Addresses
|
|
|
|
#
|
|
|
|
|
2016-06-09 12:08:18 +02:00
|
|
|
namespace :ban do
|
|
|
|
get 'search' => 'search#get'
|
2016-06-09 16:28:44 +02:00
|
|
|
get 'address_point' => 'search#get_address_point'
|
2016-06-09 12:08:18 +02:00
|
|
|
end
|
|
|
|
|
2016-09-13 12:17:56 +02:00
|
|
|
namespace :invites do
|
|
|
|
post 'dossier/:dossier_id' => '/invites#create', as: 'dossier'
|
|
|
|
end
|
|
|
|
|
2018-07-31 11:48:58 +02:00
|
|
|
#
|
|
|
|
# API
|
|
|
|
#
|
|
|
|
|
2015-12-21 17:50:34 +01:00
|
|
|
namespace :api do
|
|
|
|
namespace :v1 do
|
2016-01-20 15:48:46 +01:00
|
|
|
resources :procedures, only: [:index, :show] do
|
2016-01-25 16:08:10 +01:00
|
|
|
resources :dossiers, only: [:index, :show]
|
2016-01-20 15:48:46 +01:00
|
|
|
end
|
2015-12-21 17:50:34 +01:00
|
|
|
end
|
2016-02-29 15:15:44 +01:00
|
|
|
|
|
|
|
namespace :statistiques do
|
|
|
|
get 'dossiers' => '/api/statistiques#dossiers_stats'
|
|
|
|
end
|
2015-12-21 17:50:34 +01:00
|
|
|
end
|
2016-02-22 19:42:47 +01:00
|
|
|
|
2018-07-31 11:48:58 +02:00
|
|
|
#
|
|
|
|
# User
|
|
|
|
#
|
2017-06-14 14:42:09 +02:00
|
|
|
|
2017-06-29 14:18:59 +02:00
|
|
|
scope module: 'new_user' do
|
2018-08-07 11:58:10 +02:00
|
|
|
resources :dossiers, only: [:index, :show, :update] do
|
2018-02-08 17:13:15 +01:00
|
|
|
member do
|
|
|
|
get 'identite'
|
2018-02-08 17:13:15 +01:00
|
|
|
patch 'update_identite'
|
2018-02-21 18:32:07 +01:00
|
|
|
get 'modifier'
|
2018-07-31 15:33:50 +02:00
|
|
|
patch 'modifier', to: 'dossiers#update'
|
2018-02-27 09:49:58 +01:00
|
|
|
get 'merci'
|
2018-08-14 15:06:44 +02:00
|
|
|
get 'formulaire'
|
2018-05-24 15:55:47 +02:00
|
|
|
post 'ask_deletion'
|
2018-07-17 11:26:41 +02:00
|
|
|
get 'attestation'
|
2018-02-08 17:13:15 +01:00
|
|
|
end
|
2018-07-17 11:27:10 +02:00
|
|
|
|
|
|
|
collection do
|
2018-07-17 11:40:19 +02:00
|
|
|
post 'recherche'
|
2018-07-17 11:27:10 +02:00
|
|
|
end
|
2017-06-29 14:18:59 +02:00
|
|
|
end
|
2018-08-08 17:37:41 +02:00
|
|
|
resource :feedback, only: [:create]
|
2017-06-29 14:18:59 +02:00
|
|
|
end
|
|
|
|
|
2018-07-31 11:48:58 +02:00
|
|
|
#
|
|
|
|
# Gestionnaire
|
|
|
|
#
|
|
|
|
|
2018-02-21 13:09:39 +01:00
|
|
|
scope module: 'new_gestionnaire', as: 'gestionnaire' do
|
2017-07-11 16:09:03 +02:00
|
|
|
resources :procedures, only: [:index, :show], param: :procedure_id do
|
|
|
|
member do
|
2017-10-02 17:03:38 +02:00
|
|
|
patch 'update_displayed_fields'
|
2017-09-27 15:16:07 +02:00
|
|
|
get 'update_sort/:table/:column' => 'procedures#update_sort', as: 'update_sort'
|
2017-09-28 11:04:18 +02:00
|
|
|
post 'add_filter'
|
|
|
|
get 'remove_filter/:statut/:table/:column' => 'procedures#remove_filter', as: 'remove_filter'
|
2017-11-22 17:27:02 +01:00
|
|
|
get 'download_dossiers'
|
2017-10-02 17:03:38 +02:00
|
|
|
|
2017-07-06 16:33:36 +02:00
|
|
|
resources :dossiers, only: [:show], param: :dossier_id do
|
|
|
|
member do
|
|
|
|
get 'attestation'
|
2017-07-19 11:08:53 +02:00
|
|
|
get 'messagerie'
|
2017-09-27 12:08:47 +02:00
|
|
|
get 'annotations-privees' => 'dossiers#annotations_privees'
|
2017-09-26 14:38:16 +02:00
|
|
|
get 'avis'
|
2017-12-01 15:03:19 +01:00
|
|
|
get 'personnes-impliquees' => 'dossiers#personnes_impliquees'
|
2017-07-06 16:33:36 +02:00
|
|
|
patch 'follow'
|
|
|
|
patch 'unfollow'
|
|
|
|
patch 'archive'
|
|
|
|
patch 'unarchive'
|
2017-08-02 15:33:23 +02:00
|
|
|
patch 'annotations' => 'dossiers#update_annotations'
|
2017-07-19 14:04:49 +02:00
|
|
|
post 'commentaire' => 'dossiers#create_commentaire'
|
2017-11-30 17:11:46 +01:00
|
|
|
post 'passer-en-instruction' => 'dossiers#passer_en_instruction'
|
2017-11-30 17:18:06 +01:00
|
|
|
post 'repasser-en-construction' => 'dossiers#repasser_en_construction'
|
2017-12-01 12:57:01 +01:00
|
|
|
post 'terminer'
|
2018-01-30 19:11:07 +01:00
|
|
|
post 'envoyer-a-accompagnateur' => 'dossiers#envoyer_a_accompagnateur'
|
2017-07-24 20:04:41 +02:00
|
|
|
scope :carte do
|
|
|
|
get 'position'
|
|
|
|
end
|
2017-08-28 14:16:13 +02:00
|
|
|
post 'avis' => 'dossiers#create_avis'
|
2017-10-05 23:27:02 +02:00
|
|
|
get 'print' => 'dossiers#print'
|
2017-07-06 16:33:36 +02:00
|
|
|
end
|
2017-07-11 16:09:03 +02:00
|
|
|
end
|
2017-06-29 15:31:29 +02:00
|
|
|
end
|
|
|
|
end
|
2017-09-06 16:14:03 +02:00
|
|
|
resources :avis, only: [:index, :show, :update] do
|
|
|
|
member do
|
|
|
|
get 'instruction'
|
2017-09-06 17:06:03 +02:00
|
|
|
get 'messagerie'
|
|
|
|
post 'commentaire' => 'avis#create_commentaire'
|
2017-09-20 10:52:48 +02:00
|
|
|
post 'avis' => 'avis#create_avis'
|
2017-12-22 17:34:58 +01:00
|
|
|
|
|
|
|
get 'sign_up/email/:email' => 'avis#sign_up', constraints: { email: /.*/ }, as: 'sign_up'
|
|
|
|
post 'sign_up/email/:email' => 'avis#create_gestionnaire', constraints: { email: /.*/ }
|
2017-09-06 16:14:03 +02:00
|
|
|
end
|
|
|
|
end
|
2017-11-22 09:56:36 +01:00
|
|
|
get "recherche" => "recherche#index"
|
2017-06-29 15:31:29 +02:00
|
|
|
end
|
|
|
|
|
2018-07-31 11:48:58 +02:00
|
|
|
#
|
|
|
|
# Administrateur
|
|
|
|
#
|
|
|
|
|
2018-04-13 16:56:00 +02:00
|
|
|
scope module: 'new_administrateur' do
|
|
|
|
resources :procedures, only: [] do
|
|
|
|
member do
|
|
|
|
get 'apercu'
|
|
|
|
end
|
|
|
|
end
|
2018-04-19 16:15:44 +02:00
|
|
|
|
2018-04-23 15:32:27 +02:00
|
|
|
resources :services, except: [:show] do
|
2018-04-20 12:03:02 +02:00
|
|
|
collection do
|
|
|
|
patch 'add_to_procedure'
|
|
|
|
end
|
|
|
|
end
|
2018-04-13 16:56:00 +02:00
|
|
|
end
|
|
|
|
|
2017-03-15 12:40:59 +01:00
|
|
|
apipie
|
2018-01-15 10:02:10 +01:00
|
|
|
|
2018-07-31 11:48:58 +02:00
|
|
|
#
|
2018-01-15 10:02:10 +01:00
|
|
|
# Legacy routes
|
2018-07-31 11:48:58 +02:00
|
|
|
#
|
|
|
|
|
2018-01-15 10:02:10 +01:00
|
|
|
get 'backoffice' => redirect('/procedures')
|
|
|
|
get 'backoffice/sign_in' => redirect('/users/sign_in')
|
2018-01-16 16:08:20 +01:00
|
|
|
get 'backoffice/dossiers/procedure/:procedure_id' => redirect('/procedures/%{procedure_id}')
|
2015-08-10 11:05:06 +02:00
|
|
|
end
|