webhooks-8.x-1.x-dev/modules/webhook/webhook.routing.yml
modules/webhook/webhook.routing.yml
webhook.webhook_type.field_mapping:
path: '/admin/structure/webhook_types/manage/{webhook_type}/mapping'
defaults:
_title: 'Mapping'
_form: '\Drupal\webhook\Form\MappingForm'
requirements:
_permission: 'administer webhook types'
webhook.mapping_delete_confirm:
path: '/admin/structure/webhook_types/manage/{webhook_type}/mapping/{field_name}/delete-confirm'
defaults:
_title: 'Mapping Delete Confirm'
_form: 'Drupal\webhook\Form\MappingDeleteConfirmForm'
requirements:
_permission: 'administer webhook types'
webhook.webhook_autocomplete:
path: '/admin/structure/webhook_types/manage/{webhook_type}/mapping/autocomplete'
defaults:
_controller: '\Drupal\webhook\Controller\WebhookAutocompleteController'
_format: json
requirements:
_permission: 'administer webhook types'
webhook.webhook_token:
path: '/admin/structure/webhook_types/manage/{webhook_type}/token'
defaults:
_title: 'Tokens'
_controller: '\Drupal\webhook\Controller\WebhookTokenController'
requirements:
_permission: 'administer webhook types'
webhook.webhook_json:
path: '/admin/structure/webhook_types/manage/{webhook_type}/json'
defaults:
_title: 'JSON Payload'
_controller: '\Drupal\webhook\Controller\WebhookJsonController'
requirements:
_permission: 'administer webhook types'
