-
Notifications
You must be signed in to change notification settings - Fork 0
/
openy_myy.routing.yml
47 lines (47 loc) · 1.27 KB
/
openy_myy.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
openy_myy.myy:
path: '/myy/{path}'
defaults:
_controller: '\Drupal\openy_myy\Controller\MyYController::myy'
path: null
requirements:
_permission: 'access content'
filepath: .+
options:
no_cache: TRUE
openy_myy.settings:
path: '/admin/openy/settings/myy'
defaults:
_form: '\Drupal\openy_myy\Form\SettingsForm'
_title: 'MyY settings'
requirements:
_permission: 'administer site configuration'
openy_myy.login:
path: '/myy-model/login'
defaults:
_controller: '\Drupal\openy_myy\Controller\MyYAuthenticatorController::login'
requirements:
_permission: 'access content'
options:
no_cache: TRUE
openy_myy.logout:
path: '/myy-model/logout'
defaults:
_controller: '\Drupal\openy_myy\Controller\MyYAuthenticatorController::logout'
requirements:
_permission: 'access content'
options:
no_cache: TRUE
openy_myy.account:
path: '/myy-model/auth'
defaults:
_controller: '\Drupal\openy_myy\Controller\MyYAuthenticatorController::auth'
requirements:
_permission: 'access content'
openy_myy.check_login:
path: '/myy-model/check-login'
defaults:
_controller: '\Drupal\openy_myy\Controller\MyYAuthenticatorController::checkLogin'
requirements:
_permission: 'access content'
options:
no_cache: TRUE