- New ESI scope for admin access - New admin.log file for admin actions (kick, ban,..) - New login status for characters - improved cronJob exec time for systemData import (jump/kill data) - Added PHP 64-bit check to /setup
20 lines
963 B
INI
20 lines
963 B
INI
; Route config
|
|
|
|
[routes]
|
|
; DB setup setup
|
|
; IMPORTANT: remove/comment this line after setup/update is finished!
|
|
GET @setup: /setup [sync] = Controller\Setup->init
|
|
; login (index) page
|
|
GET @login: / [sync] = Controller\AppController->init
|
|
; CCP SSO redirect
|
|
GET @sso: /sso/@action [sync] = Controller\Ccp\Sso->@action
|
|
; map page
|
|
GET @map: /map [sync] = Controller\MapController->init
|
|
; admin panel
|
|
GET @admin: /admin* [sync] = Controller\Admin->dispatch
|
|
|
|
; ajax wildcard APIs (throttled)
|
|
GET|POST /api/@controller/@action [ajax] = Controller\Api\@controller->@action, 0, 512
|
|
GET|POST /api/@controller/@action/@arg1 [ajax] = Controller\Api\@controller->@action, 0, 512
|
|
GET|POST /api/@controller/@action/@arg1/@arg2 [ajax] = Controller\Api\@controller->@action, 0, 512
|