Update to Drupal 8.1.9. For more information, see https://www.drupal.org/project/drupal/releases/8.1.9
This commit is contained in:
parent
f9f23cdf38
commit
09b113657a
125 changed files with 2307 additions and 385 deletions
|
|
@ -140,6 +140,17 @@ user.cancel_confirm:
|
|||
_entity_access: 'user.delete'
|
||||
user: \d+
|
||||
|
||||
user.reset.login:
|
||||
path: '/user/reset/{uid}/{timestamp}/{hash}/login'
|
||||
defaults:
|
||||
_controller: '\Drupal\user\Controller\UserController::resetPassLogin'
|
||||
_title: 'Reset password'
|
||||
requirements:
|
||||
_user_is_logged_in: 'FALSE'
|
||||
options:
|
||||
_maintenance_access: TRUE
|
||||
no_cache: TRUE
|
||||
|
||||
user.reset:
|
||||
path: '/user/reset/{uid}/{timestamp}/{hash}'
|
||||
defaults:
|
||||
|
|
@ -150,3 +161,14 @@ user.reset:
|
|||
options:
|
||||
_maintenance_access: TRUE
|
||||
no_cache: TRUE
|
||||
|
||||
user.reset.form:
|
||||
path: '/user/reset/{uid}'
|
||||
defaults:
|
||||
_controller: '\Drupal\user\Controller\UserController::getResetPassForm'
|
||||
_title: 'Reset password'
|
||||
requirements:
|
||||
_user_is_logged_in: 'FALSE'
|
||||
options:
|
||||
_maintenance_access: TRUE
|
||||
no_cache: TRUE
|
||||
|
|
|
|||
Reference in a new issue