diff options
| author | Zog | 2018-05-30 18:04:10 +0200 | 
|---|---|---|
| committer | Zog | 2018-05-30 18:04:10 +0200 | 
| commit | e400ea5d0d481420052caa080b9dbc4e9acf8406 (patch) | |
| tree | 23ffa9e6fb1760ba72bd47c86b7827915644d480 /config | |
| parent | 971b267958c3bf78abea332e0af4c46a23679b61 (diff) | |
| download | chouette-core-7231-rationalize-iev-api.tar.bz2 | |
Refs #7231; Rationalize imports API7231-rationalize-iev-api
Diffstat (limited to 'config')
| -rw-r--r-- | config/routes.rb | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/config/routes.rb b/config/routes.rb index cde1701f8..f8c33d687 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -208,7 +208,11 @@ ChouetteIhm::Application.routes.draw do        resources :vehicle_journeys, only: :show        namespace :internals do          get 'compliance_check_sets/:id/notify_parent', to: 'compliance_check_sets#notify_parent' -        get 'netex_imports/:id/notify_parent', to: 'netex_imports#notify_parent' +        resources :netex_imports, only: :create do +          member do +            get :notify_parent +          end +        end        end      end    end | 
