X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/a0797cd7cce978a98795cc91e5616ae742eb869d..87c86d97bf94c3caa31208bab3c5a1319e29b626:/Resources/config/routes/rapsys_air.yaml diff --git a/Resources/config/routes/rapsys_air.yaml b/Resources/config/routes/rapsys_air.yaml index 518cc02..2a57aae 100644 --- a/Resources/config/routes/rapsys_air.yaml +++ b/Resources/config/routes/rapsys_air.yaml @@ -1,34 +1,164 @@ -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: '/contacter' controller: Rapsys\AirBundle\Controller\DefaultController::contact methods: GET|POST -rapsys_air_policy: - path: /policy - controller: Rapsys\AirBundle\Controller\DefaultController::policy +rapsys_air_frequently_asked_questions: + path: + en: '/en/frequently-asked-questions' + fr: '/foire-aux-questions' + controller: Rapsys\AirBundle\Controller\DefaultController::frequentlyAskedQuestions methods: GET +rapsys_air_organizer_regulation: + path: + en: '/en/organizer-regulation' + fr: '/reglement-organisateur' + controller: Rapsys\AirBundle\Controller\DefaultController::organizerRegulation + methods: GET + +rapsys_air_terms_of_service: + path: + en: '/en/terms-of-service' + fr: '/conditions-generales-d-utilisation' + controller: Rapsys\AirBundle\Controller\DefaultController::termsOfService + methods: GET + +rapsys_air_dispute: + path: + en: '/en/dispute' + fr: '/contestation' + controller: Rapsys\AirBundle\Controller\DefaultController::dispute + methods: GET|POST + rapsys_air_location: - path: /locations + path: + en: '/en/location' + fr: '/emplacement' controller: Rapsys\AirBundle\Controller\LocationController::index methods: GET -rapsys_air_location_show: - path: /location/{id<\d+>} - controller: Rapsys\AirBundle\Controller\LocationController::show +rapsys_air_location_add: + path: + en: '/en/location' + fr: '/emplacement' + controller: Rapsys\AirBundle\Controller\LocationController::add + methods: POST + +rapsys_air_location_edit: + path: + en: '/en/location/{id<\d+>}' + fr: '/emplacement/{id<\d+>}' + controller: Rapsys\AirBundle\Controller\LocationController::edit + methods: POST + +rapsys_air_location_view: + path: + en: '/en/location/{id<\d+>}' + fr: '/emplacement/{id<\d+>}' + controller: Rapsys\AirBundle\Controller\LocationController::view + methods: GET + +rapsys_air_application_add: + path: + en: '/en/application' + fr: '/reservation' + controller: Rapsys\AirBundle\Controller\ApplicationController::add + methods: POST + +rapsys_air_session: + path: + en: '/en/session' + fr: '/seance' + controller: Rapsys\AirBundle\Controller\SessionController::index + methods: GET + +rapsys_air_session_edit: + path: + en: '/en/session/{id<\d+>}' + fr: '/seance/{id<\d+>}' + controller: Rapsys\AirBundle\Controller\SessionController::edit + methods: POST + +rapsys_air_session_view: + path: + en: '/en/session/{id<\d+>}' + fr: '/seance/{id<\d+>}' + controller: Rapsys\AirBundle\Controller\SessionController::view methods: GET +rapsys_air_snippet_add: + path: + en: '/en/snippet' + fr: '/extrait' + controller: Rapsys\AirBundle\Controller\SnippetController::add + methods: POST + +rapsys_air_snippet_edit: + path: + en: '/en/snippet/{id<\d+>}' + fr: '/extrait/{id<\d+>}' + controller: Rapsys\AirBundle\Controller\SnippetController::edit + methods: POST + 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 + +rapsys_user_login: + path: + en: /en/login + fr: /connecter + controller: Rapsys\UserBundle\Controller\DefaultController::login + methods: GET|POST + +rapsys_user_recover: + path: + en: /en/recover + fr: /recuperer + controller: Rapsys\UserBundle\Controller\DefaultController::recover + methods: GET|POST + +rapsys_user_recover_mail: + path: + en: /en/recover/{recipient}/{hash} + fr: /recuperer/{recipient}/{hash} + controller: Rapsys\UserBundle\Controller\DefaultController::recoverMail + requirements: + recipient: '[a-zA-Z0-9=_-]+' + hash: '[a-zA-Z0-9=_-]+' + methods: GET|POST + +rapsys_user_register: + path: + en: /en/register + fr: /enregistrer + controller: Rapsys\UserBundle\Controller\DefaultController::register + methods: GET|POST + +rapsys_user_logout: + path: + en: /en/logout + fr: /deconnecter methods: GET