X-Git-Url: https://git.rapsys.eu/userbundle/blobdiff_plain/67386c1992816b267b3c482352a6500dd1424e0c..5af30fedd3a4d3107f3bbd049a2148e0d8aa80b1:/Resources/config/routes/rapsys_user.yaml diff --git a/Resources/config/routes/rapsys_user.yaml b/Resources/config/routes/rapsys_user.yaml index e2af83c..3040770 100644 --- a/Resources/config/routes/rapsys_user.yaml +++ b/Resources/config/routes/rapsys_user.yaml @@ -1,20 +1,28 @@ rapsys_user_confirm: path: /confirm/{hash}/{mail} - controller: Rapsys\UserBundle\Controller\DefaultController::registerMail + controller: Rapsys\UserBundle\Controller\UserController::registerMail requirements: + hash: '[a-zA-Z0-9=_-]+' mail: '[a-zA-Z0-9=_-]+' + methods: GET|POST + +rapsys_user_edit: + path: /user/{hash}/{mail} + controller: Rapsys\UserBundle\Controller\UserController::edit + requirements: hash: '[a-zA-Z0-9=_-]+' + mail: '[a-zA-Z0-9=_-]+' methods: GET|POST rapsys_user_login: path: /login/{hash}/{mail} - controller: Rapsys\UserBundle\Controller\DefaultController::login + controller: Rapsys\UserBundle\Controller\UserController::login defaults: - mail: ~ hash: ~ + mail: ~ requirements: - mail: '[a-zA-Z0-9=_-]+' hash: '[a-zA-Z0-9=_-]+' + mail: '[a-zA-Z0-9=_-]+' methods: GET|POST rapsys_user_logout: @@ -23,38 +31,23 @@ rapsys_user_logout: rapsys_user_recover: path: /recover/{hash}/{pass}/{mail} - controller: Rapsys\UserBundle\Controller\DefaultController::recover + controller: Rapsys\UserBundle\Controller\UserController::recover defaults: - mail: ~ - pass: ~ hash: ~ - requirements: - mail: '[a-zA-Z0-9=_-]+' - pass: '[a-zA-Z0-9=_-]+' - hash: '[a-zA-Z0-9=_-]+' - methods: GET|POST - -rapsys_user_register: - path: /register/{hash}/{field}/{mail} - controller: Rapsys\UserBundle\Controller\DefaultController::register - defaults: + pass: ~ mail: ~ - field: ~ - hash: ~ requirements: - mail: '[a-zA-Z0-9=_-]+' - field: '[a-zA-Z0-9=_-]+' hash: '[a-zA-Z0-9=_-]+' + pass: '[a-zA-Z0-9=_-]+' + mail: '[a-zA-Z0-9=_-]+' methods: GET|POST -rapsys_user_edit: - path: /user/{hash}/{mail} - controller: Rapsys\UserBundle\Controller\DefaultController::edit - requirements: - mail: '[a-zA-Z0-9=_-]+' - hash: '[a-zA-Z0-9=_-]+' +rapsys_user_register: + path: /register + controller: Rapsys\UserBundle\Controller\UserController::register methods: GET|POST -rapsys_user_index: +rapsys_user: path: / + controller: Rapsys\UserBundle\Controller\UserController::index methods: GET