X-Git-Url: https://git.rapsys.eu/userbundle/blobdiff_plain/aa9a48842abcb82224e53d68326420c132f9606a..336e7f21302ae3753257e924ef72eaf3c77524b8:/Resources/config/routes/rapsys_user.yaml diff --git a/Resources/config/routes/rapsys_user.yaml b/Resources/config/routes/rapsys_user.yaml index 3fbe262..b67c83f 100644 --- a/Resources/config/routes/rapsys_user.yaml +++ b/Resources/config/routes/rapsys_user.yaml @@ -1,14 +1,20 @@ rapsys_user_confirm: - path: /confirm/{mail}/{hash} + path: /confirm/{hash}/{mail} controller: Rapsys\UserBundle\Controller\DefaultController::registerMail requirements: - mail: '[a-zA-Z0-9=_-]+' hash: '[a-zA-Z0-9=_-]+' + mail: '[a-zA-Z0-9=_-]+' methods: GET|POST rapsys_user_login: - path: /login + path: /login/{hash}/{mail} controller: Rapsys\UserBundle\Controller\DefaultController::login + defaults: + hash: ~ + mail: ~ + requirements: + hash: '[a-zA-Z0-9=_-]+' + mail: '[a-zA-Z0-9=_-]+' methods: GET|POST rapsys_user_logout: @@ -16,33 +22,36 @@ rapsys_user_logout: methods: GET rapsys_user_recover: - path: /recover/{mail}/pass/{hash} + path: /recover/{hash}/{pass}/{mail} controller: Rapsys\UserBundle\Controller\DefaultController::recover defaults: - mail: ~ - pass: ~ hash: ~ + pass: ~ + mail: ~ requirements: - mail: '[a-zA-Z0-9=_-]+' - pass: '[a-zA-Z0-9=_-]+' hash: '[a-zA-Z0-9=_-]+' + pass: '[a-zA-Z0-9=_-]+' + mail: '[a-zA-Z0-9=_-]+' methods: GET|POST rapsys_user_register: - path: /register/{fields}/{hash} + path: /register/{hash}/{field}/{mail} controller: Rapsys\UserBundle\Controller\DefaultController::register defaults: - fields: ~ hash: ~ + field: ~ + mail: ~ requirements: - fields: '[a-zA-Z0-9=_-]+' hash: '[a-zA-Z0-9=_-]+' + field: '[a-zA-Z0-9=_-]+' + mail: '[a-zA-Z0-9=_-]+' methods: GET|POST rapsys_user_edit: - path: /user/{mail} + path: /user/{hash}/{mail} controller: Rapsys\UserBundle\Controller\DefaultController::edit requirements: + hash: '[a-zA-Z0-9=_-]+' mail: '[a-zA-Z0-9=_-]+' methods: GET|POST