]> Raphaƫl G. Git Repositories - userbundle/blob - Resources/config/routes/rapsys_user.yaml
Add configurations files
[userbundle] / Resources / config / routes / rapsys_user.yaml
1 rapsys_user_login:
2 path: /login
3 controller: Rapsys\UserBundle\Controller\DefaultController::login
4 methods: GET|POST
5
6 rapsys_user_recover:
7 path: /recover
8 controller: Rapsys\UserBundle\Controller\DefaultController::recover
9 methods: GET|POST
10
11 rapsys_user_recover_mail:
12 path: /recover/{recipient}/{hash}
13 controller: Rapsys\UserBundle\Controller\DefaultController::recoverMail
14 requirements:
15 recipient: '[a-zA-Z0-9=_-]+'
16 hash: '[a-zA-Z0-9=_-]+'
17 methods: GET|POST
18
19 rapsys_user_register:
20 path: /register
21 controller: Rapsys\UserBundle\Controller\DefaultController::register
22 methods: GET|POST
23
24 rapsys_user_logout:
25 path: /logout
26 methods: GET
27
28 rapsys_user_index:
29 path: /
30 methods: GET