Pathauto and dependencies
This commit is contained in:
parent
4b1a293d57
commit
24ffcb956b
257 changed files with 29510 additions and 0 deletions
22
web/modules/contrib/token/token.routing.yml
Normal file
22
web/modules/contrib/token/token.routing.yml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
token.tree:
|
||||
path: '/token/tree'
|
||||
defaults:
|
||||
_controller: '\Drupal\token\Controller\TokenTreeController::outputTree'
|
||||
requirements:
|
||||
_csrf_token: 'TRUE'
|
||||
|
||||
token.autocomplete:
|
||||
path: '/token/autocomplete/{token_type}/{filter}'
|
||||
defaults:
|
||||
_controller: '\Drupal\token\Controller\TokenAutocompleteController::autocomplete'
|
||||
requirements:
|
||||
_access: 'TRUE'
|
||||
|
||||
token.flush_cache:
|
||||
path: '/token/flush-cache'
|
||||
defaults:
|
||||
_controller: '\Drupal\token\Controller\TokenCacheController::flush'
|
||||
requirements:
|
||||
_permission: 'flush caches'
|
||||
_csrf_token: 'TRUE'
|
||||
_module_dependencies: 'admin_menu'
|
||||
Reference in a new issue