-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathos2web_logging.routing.yml
More file actions
executable file
·39 lines (39 loc) · 1.35 KB
/
os2web_logging.routing.yml
File metadata and controls
executable file
·39 lines (39 loc) · 1.35 KB
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
os2web_logging.status:
path: '/admin/config/system/os2logging/status'
defaults:
_controller: '\Drupal\os2web_logging\Controller\LoggingController::statusPage'
_title: 'OS2Web logging status'
requirements:
_permission: 'administer os2logging settings'
options:
_admin_route: TRUE
os2web_logging.settings:
path: '/admin/config/system/os2logging/settings'
defaults:
_form: '\Drupal\os2web_logging\Form\SettingsForm'
_title: 'OS2Web logging settings'
requirements:
_permission: 'administer os2logging settings'
options:
_admin_route: TRUE
os2web_logging.watchdog_settings:
path: '/admin/config/system/os2logging/watchdog-settings'
defaults:
_form: '\Drupal\os2web_logging\Form\WatchdogSettingsForm'
_title: 'OS2Web watchdog logging settings'
requirements:
_permission: 'administer os2logging settings'
options:
_admin_route: TRUE
os2web_logging.logfile.download:
path: '/os2web_logging/log/{filename}'
defaults:
_controller: '\Drupal\os2web_logging\Controller\LoggingController::logfileExport'
requirements:
_permission: 'administer os2logging settings'
os2web_logging.watchdogfile.download:
path: '/os2web_logging/ws-log/{filename}'
defaults:
_controller: '\Drupal\os2web_logging\Controller\LoggingController::watchdogFileExport'
requirements:
_permission: 'administer os2logging settings'