X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/a0797cd7cce978a98795cc91e5616ae742eb869d..305db36ddcf693b4b5a33bd9ed231f2daf167c89:/Resources/config/routes/rapsys_air.yaml diff --git a/Resources/config/routes/rapsys_air.yaml b/Resources/config/routes/rapsys_air.yaml index 518cc02..6c71b84 100644 --- a/Resources/config/routes/rapsys_air.yaml +++ b/Resources/config/routes/rapsys_air.yaml @@ -1,34 +1,71 @@ -rapsys_air_index: - path: / +#https://symfony.com/doc/current/routing.html#localized-routes-i18n +#SCRUD: index, add, edit, delete, view +rapsys_air: + path: + en: '/en' + fr: '/' controller: Rapsys\AirBundle\Controller\DefaultController::index methods: GET rapsys_air_contact: - path: /contact + path: + en: '/en/contact' + fr: '/contact' controller: Rapsys\AirBundle\Controller\DefaultController::contact methods: GET|POST -rapsys_air_policy: - path: /policy - controller: Rapsys\AirBundle\Controller\DefaultController::policy +rapsys_air_regulation: + path: + en: '/en/regulation' + fr: '/reglement' + controller: Rapsys\AirBundle\Controller\DefaultController::regulation methods: GET -rapsys_air_location: - path: /locations - controller: Rapsys\AirBundle\Controller\LocationController::index +rapsys_air_location_view: + path: + en: '/en/location/{id<\d+>}' + fr: '/emplacement/{id<\d+>}' + controller: Rapsys\AirBundle\Controller\LocationController::view methods: GET -rapsys_air_location_show: - path: /location/{id<\d+>} - controller: Rapsys\AirBundle\Controller\LocationController::show +rapsys_air_application_add: + path: + en: '/en/application' + fr: '/reservation' + controller: Rapsys\AirBundle\Controller\ApplicationController::add + methods: POST + +rapsys_air_application_edit: + path: + en: '/en/application/{id<\d+>}' + fr: '/reservation/{id<\d+>}' + controller: Rapsys\AirBundle\Controller\ApplicationController::edit + methods: POST + +rapsys_air_session: + path: + en: '/en/session' + fr: '/seance' + controller: Rapsys\AirBundle\Controller\SessionController::index + methods: GET + +rapsys_air_session_view: + path: + en: '/en/session/{id<\d+>}' + fr: '/seance/{id<\d+>}' + controller: Rapsys\AirBundle\Controller\SessionController::view methods: GET rapsys_air_user: - path: /users + path: + en: '/en/user' + fr: '/utilisateur' controller: Rapsys\AirBundle\Controller\UserController::index methods: GET -rapsys_air_user_show: - path: /user/{id<\d+>} - controller: Rapsys\AirBundle\Controller\UserController::show +rapsys_air_user_view: + path: + en: '/en/user/{id<\d+>}' + fr: '/utilisateur/{id<\d+>}' + controller: Rapsys\AirBundle\Controller\UserController::view methods: GET