44 lines
1.1 KiB
YAML
44 lines
1.1 KiB
YAML
api_user_list:
|
|
path: /apiusers
|
|
controller: App\Controller\APIUserController::index
|
|
|
|
api_user_rows:
|
|
path: /apiusers/rows
|
|
controller: App\Controller\APIUserController::rows
|
|
methods: [POST]
|
|
|
|
api_user_create:
|
|
path: /apiusers/create
|
|
controller: App\Controller\APIUserController::addForm
|
|
methods: [GET]
|
|
|
|
api_user_create_submit:
|
|
path: /apiusers/create
|
|
controller: App\Controller\APIUserController::addSubmit
|
|
methods: [POST]
|
|
|
|
api_user_update:
|
|
path: /apiusers/{id}
|
|
controller: App\Controller\APIUserController::updateForm
|
|
methods: [GET]
|
|
|
|
api_user_update_submit:
|
|
path: /apiusers/{id}
|
|
controller: App\Controller\APIUserController::updateSubmit
|
|
methods: [POST]
|
|
|
|
api_user_delete:
|
|
path: /apiusers/{id}
|
|
controller: App\Controller\APIUserController::destroy
|
|
methods: [DELETE]
|
|
|
|
api_user_profile:
|
|
path: /apiprofile
|
|
controller: App\Controller\APIUserController::profileForm
|
|
methods: [GET]
|
|
|
|
api_user_profile_submit:
|
|
path: /apiprofile
|
|
controller: App\Controller\APIUserController::profileSubmit
|
|
methods: [POST]
|
|
|