Move into nested docroot
This commit is contained in:
parent
83a0d3a149
commit
c8b70abde9
13405 changed files with 0 additions and 0 deletions
37
web/core/modules/quickedit/quickedit.routing.yml
Normal file
37
web/core/modules/quickedit/quickedit.routing.yml
Normal file
|
@ -0,0 +1,37 @@
|
|||
quickedit.metadata:
|
||||
path: '/quickedit/metadata'
|
||||
defaults:
|
||||
_controller: '\Drupal\quickedit\QuickEditController::metadata'
|
||||
requirements:
|
||||
_permission: 'access in-place editing'
|
||||
|
||||
quickedit.attachments:
|
||||
path: '/quickedit/attachments'
|
||||
defaults:
|
||||
_controller: '\Drupal\quickedit\QuickEditController::attachments'
|
||||
requirements:
|
||||
_permission: 'access in-place editing'
|
||||
|
||||
quickedit.field_form:
|
||||
path: '/quickedit/form/{entity_type}/{entity}/{field_name}/{langcode}/{view_mode_id}'
|
||||
defaults:
|
||||
_controller: '\Drupal\quickedit\QuickEditController::fieldForm'
|
||||
options:
|
||||
parameters:
|
||||
entity:
|
||||
type: entity:{entity_type}
|
||||
requirements:
|
||||
_permission: 'access in-place editing'
|
||||
_access_quickedit_entity_field: 'TRUE'
|
||||
|
||||
quickedit.entity_save:
|
||||
path: '/quickedit/entity/{entity_type}/{entity}'
|
||||
defaults:
|
||||
_controller: '\Drupal\quickedit\QuickEditController::entitySave'
|
||||
requirements:
|
||||
_permission: 'access in-place editing'
|
||||
_entity_access: 'entity.update'
|
||||
options:
|
||||
parameters:
|
||||
entity:
|
||||
type: entity:{entity_type}
|
Reference in a new issue