]> Raphaël G. Git Repositories - userbundle/commitdiff
Add configurations files 0.1.1
authorRaphaël Gertz <git@rapsys.eu>
Tue, 26 Nov 2019 22:29:22 +0000 (23:29 +0100)
committerRaphaël Gertz <git@rapsys.eu>
Tue, 26 Nov 2019 22:29:22 +0000 (23:29 +0100)
Resources/config/packages/rapsys_user.yaml [new file with mode: 0644]
Resources/config/routes/rapsys_user.yaml [new file with mode: 0644]

diff --git a/Resources/config/packages/rapsys_user.yaml b/Resources/config/packages/rapsys_user.yaml
new file mode 100644 (file)
index 0000000..ce6e4fc
--- /dev/null
@@ -0,0 +1,10 @@
+#Service configuration
+services:
+    #Register default controller
+    Rapsys\UserBundle\Controller\DefaultController:
+        arguments: [ '@service_container', '@translator', '@router' ]
+        autowire: true
+        tags: [ 'controller.service_arguments' ]
+    #Register slugger utils service
+    Rapsys\UserBundle\Utils\Slugger:
+        arguments: [ '@service_container' ]
diff --git a/Resources/config/routes/rapsys_user.yaml b/Resources/config/routes/rapsys_user.yaml
new file mode 100644 (file)
index 0000000..c688137
--- /dev/null
@@ -0,0 +1,30 @@
+rapsys_user_login:
+    path: /login
+    controller: Rapsys\UserBundle\Controller\DefaultController::login
+    methods: GET|POST
+
+rapsys_user_recover:
+    path: /recover
+    controller: Rapsys\UserBundle\Controller\DefaultController::recover
+    methods: GET|POST
+
+rapsys_user_recover_mail:
+    path: /recover/{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: /register
+    controller: Rapsys\UserBundle\Controller\DefaultController::register
+    methods: GET|POST
+
+rapsys_user_logout:
+    path: /logout
+    methods: GET
+
+rapsys_user_index:
+    path: /
+    methods: GET