Subtly rename admin/instructeurs to admin/assigns

This commit is contained in:
simon lehericey 2019-08-06 11:46:55 +02:00
parent 7ac243ac44
commit bb8d65c6b4
13 changed files with 24 additions and 24 deletions

View file

@ -204,7 +204,7 @@ Rails.application.routes.draw do
get 'monavis' => 'procedures#monavis', as: :monavis
patch 'monavis' => 'procedures#update_monavis', as: :update_monavis
resource :instructeurs, only: [:show, :update]
resource :assigns, only: [:show, :update], path: 'instructeurs'
resource :attestation_template, only: [:edit, :update, :create]
@ -218,7 +218,7 @@ Rails.application.routes.draw do
delete 'attestation_template/signature' => 'attestation_templates#delete_signature'
end
namespace :instructeurs do
namespace :assigns do
get 'show' # delete after fixed tests admin/instructeurs/show_spec without this line
end