aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/config/services.yml
diff options
context:
space:
mode:
authorJeremy <jeremy.benoist@gmail.com>2015-03-07 23:25:36 +0100
committerJeremy <jeremy.benoist@gmail.com>2015-03-08 07:35:24 +0100
commit6894d48e03c397096bb64420373afa60c397fe97 (patch)
tree0deb201b05b6aea527abc82ba7989732c4afbdb9 /src/Wallabag/CoreBundle/Resources/config/services.yml
parentf37d1427a1b75f9d7a2e273b2e9fb0e895a769ab (diff)
downloadwallabag-6894d48e03c397096bb64420373afa60c397fe97.tar.gz
wallabag-6894d48e03c397096bb64420373afa60c397fe97.tar.zst
wallabag-6894d48e03c397096bb64420373afa60c397fe97.zip
Handle forgot password
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/config/services.yml')
-rw-r--r--src/Wallabag/CoreBundle/Resources/config/services.yml8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/config/services.yml b/src/Wallabag/CoreBundle/Resources/config/services.yml
index c734a3a5..062e1651 100644
--- a/src/Wallabag/CoreBundle/Resources/config/services.yml
+++ b/src/Wallabag/CoreBundle/Resources/config/services.yml
@@ -22,9 +22,17 @@ services:
22 - @security.context 22 - @security.context
23 - %theme% # default theme from parameters.yml 23 - %theme% # default theme from parameters.yml
24 24
25 # custom form type
25 wallabag_core.form.type.config: 26 wallabag_core.form.type.config:
26 class: Wallabag\CoreBundle\Form\Type\ConfigType 27 class: Wallabag\CoreBundle\Form\Type\ConfigType
27 arguments: 28 arguments:
28 - %liip_theme.themes% 29 - %liip_theme.themes%
29 tags: 30 tags:
30 - { name: form.type, alias: config } 31 - { name: form.type, alias: config }
32
33 wallabag_core.form.type.forgot_password:
34 class: Wallabag\CoreBundle\Form\Type\ForgotPasswordType
35 arguments:
36 - @doctrine
37 tags:
38 - { name: form.type, alias: forgot_password }