mirror of
https://github.com/wallabag/wallabag.git
synced 2025-09-15 18:57:05 +00:00
Merge pull request #1152 from wallabag/v2-forgot-password
Handle forgot password
This commit is contained in:
commit
f98a2a0fc3
15 changed files with 526 additions and 8 deletions
|
@ -44,5 +44,11 @@ monolog:
|
|||
assetic:
|
||||
use_controller: true
|
||||
|
||||
#swiftmailer:
|
||||
# delivery_address: me@example.com
|
||||
swiftmailer:
|
||||
# see http://mailcatcher.me/
|
||||
transport: smtp
|
||||
host: 'localhost'
|
||||
port: 1025
|
||||
username: null
|
||||
password: null
|
||||
|
||||
|
|
|
@ -13,7 +13,9 @@ web_profiler:
|
|||
intercept_redirects: false
|
||||
|
||||
swiftmailer:
|
||||
disable_delivery: true
|
||||
# to be able to read emails sent
|
||||
spool:
|
||||
type: file
|
||||
|
||||
doctrine:
|
||||
dbal:
|
||||
|
|
|
@ -41,3 +41,4 @@ parameters:
|
|||
items_on_page: 12
|
||||
theme: baggy
|
||||
language: en_US
|
||||
from_email: no-reply@wallabag.org
|
||||
|
|
|
@ -59,4 +59,5 @@ security:
|
|||
- { path: ^/api/salt, roles: IS_AUTHENTICATED_ANONYMOUSLY }
|
||||
- { path: ^/api/doc, roles: IS_AUTHENTICATED_ANONYMOUSLY }
|
||||
- { path: ^/login, roles: IS_AUTHENTICATED_ANONYMOUSLY }
|
||||
- { path: ^/forgot-password, roles: IS_AUTHENTICATED_ANONYMOUSLY }
|
||||
- { path: ^/, roles: ROLE_USER }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue