diff options
| -rw-r--r-- | config/routes.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/config/routes.rb b/config/routes.rb index 8d7d4c92d..27db66c2c 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -63,7 +63,9 @@ ChouetteIhm::Application.routes.draw do resources :stop_areas, only: [:index, :show] resources :time_tables, only: [:index, :show] resources :vehicle_journeys, only: :show - post 'compliance_check_sets/validated', to: 'compliance_check_sets#validated' + patch 'compliance_check_sets/:id', + to: 'compliance_check_sets#validated', + as: 'compliance_check_set' end end |
