-
Notifications
You must be signed in to change notification settings - Fork 1
/
xom_web_services.routing.yml
42 lines (42 loc) · 1.31 KB
/
xom_web_services.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
xom_web_services.release:
path: /admin/sparkle/release
defaults:
_title: 'Release Manager'
_form: 'Drupal\xom_web_services\Form\SparkleForm'
requirements:
_permission: 'administer app releases'
xom_web_services.gate_check:
path: /xivmac/gatecheck
defaults:
_controller: 'Drupal\xom_web_services\Controller\GateCheckController::checkGate'
methods: [GET]
requirements:
_permission: 'access content'
xom_web_services.login_check:
path: /xivmac/logincheck
defaults:
_controller: 'Drupal\xom_web_services\Controller\GateCheckController::checkLogin'
methods: [GET]
requirements:
_permission: 'access content'
xom_web_services.dalamud_check:
path: /xivmac/dalamudcheck
defaults:
_controller: 'Drupal\xom_web_services\Controller\GateCheckController::checkDalamud'
methods: [GET]
requirements:
_permission: 'access content'
xom_web_services.iinact_plugin:
path: /iinact/plugin/latest
defaults:
_controller: 'Drupal\xom_web_services\IINACT\IINACTUpdateEndpoint::serve'
methods: [GET]
requirements:
_permission: 'access content'
xom_web_services.iinact_plugin_url:
path: /iinact/plugin/latest/download
defaults:
_controller: 'Drupal\xom_web_services\IINACT\IINACTUpdateEndpoint::serveDownload'
methods: [GET]
requirements:
_permission: 'access content'