mirror of
https://github.com/resources-manager/resources-manager-webui.git
synced 2024-10-31 20:00:36 +01:00
24 lines
576 B
YAML
24 lines
576 B
YAML
index:
|
|
path: /
|
|
controller: App\Controller\HomeController::index
|
|
app_login:
|
|
path: /login
|
|
controller: App\Controller\SecurityController::login
|
|
methods: GET|POST
|
|
app_logout:
|
|
path: /logout
|
|
methods: GET
|
|
registerForm:
|
|
path: /register
|
|
controller: App\Controller\SecurityController::showRegisterForm
|
|
methods: GET
|
|
|
|
register:
|
|
path: /register
|
|
controller: App\Controller\SecurityController::register
|
|
methods: POST
|
|
|
|
users:
|
|
path: /users
|
|
controller: App\Controller\SecurityController::showUserManagePage
|
|
methods: GET|POST |