-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathembargoes.routing.yml
47 lines (42 loc) · 1.48 KB
/
embargoes.routing.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
embargoes.settings:
path: '/admin/config/content/embargoes/settings'
defaults:
_form: '\Drupal\embargoes\Form\EmbargoesSettingsForm'
_title: 'Embargoes Settings'
requirements:
_permission: 'administer embargoes settings'
embargoes.settings.notifications:
path: '/admin/config/content/embargoes/settings/notifications'
defaults:
_form: '\Drupal\embargoes\Form\EmbargoesNotificationsForm'
_title: 'Notification Settings'
requirements:
_permission: 'administer embargoes settings'
embargoes.settings.log:
path: '/admin/config/content/embargoes/settings/log'
defaults:
_controller: '\Drupal\embargoes\Controller\EmbargoesLogController::showRenderedLog'
_title: 'Embargo Activity Log'
requirements:
_permission: 'administer embargoes settings'
embargoes.node.embargoes:
path: '/node/{node}/embargoes'
defaults:
_controller: '\Drupal\embargoes\Controller\EmbargoesNodeEmbargoesController::showEmbargoes'
_title: 'View Embargoes'
requirements:
_permission: 'manage embargoes'
embargoes.node.embargo:
path: '/node/{node}/embargoes/{embargo_id}'
defaults:
_form: '\Drupal\embargoes\Form\EmbargoesNodeEmbargoesForm'
_title: 'Edit Embargo'
requirements:
_permission: 'manage embargoes'
embargoes.ip_access_denied:
path: '/embargoes/ip-access-denied'
defaults:
_controller: '\Drupal\embargoes\Controller\EmbargoesIpAccessDeniedController::response'
_title: 'Access Denied'
requirements:
_permission: 'access content'