34 lines
771 B
YAML
34 lines
771 B
YAML
role_list:
|
|
path: /roles
|
|
controller: App\Controller\RoleController::index
|
|
|
|
role_rows:
|
|
path: /roles/rows
|
|
controller: App\Controller\RoleController::rows
|
|
methods: [POST]
|
|
|
|
role_create:
|
|
path: /roles/create
|
|
controller: App\Controller\RoleController::addForm
|
|
methods: [GET]
|
|
|
|
role_create_submit:
|
|
path: /roles/create
|
|
controller: App\Controller\RoleController::addSubmit
|
|
methods: [POST]
|
|
|
|
role_update:
|
|
path: /roles/{id}
|
|
controller: App\Controller\RoleController::updateForm
|
|
methods: [GET]
|
|
|
|
role_update_submit:
|
|
path: /roles/{id}
|
|
controller: App\Controller\RoleController::updateSubmit
|
|
methods: [POST]
|
|
|
|
role_delete:
|
|
path: /roles/{id}
|
|
controller: App\Controller\RoleController::destroy
|
|
methods: [DELETE]
|
|
|