34 lines
825 B
YAML
34 lines
825 B
YAML
entity_list:
|
|
path: /test
|
|
controller: App\Controller\EntityController::index
|
|
methods: [GET]
|
|
|
|
entity_rows:
|
|
path: /test/rowdata
|
|
controller: App\Controller\EntityController::datatableRows
|
|
methods: [POST]
|
|
|
|
entity_add_form:
|
|
path: /test/newform
|
|
controller: App\Controller\EntityController::addForm
|
|
methods: [GET]
|
|
|
|
entity_add_submit:
|
|
path: /test
|
|
controller: App\Controller\EntityController::addSubmit
|
|
methods: [POST]
|
|
|
|
entity_update_form:
|
|
path: /test/{id}
|
|
controller: App\Controller\EntityController::updateForm
|
|
methods: [GET]
|
|
|
|
entity_update_submit:
|
|
path: /test/{id}
|
|
controller: App\Controller\EntityController::updateSubmit
|
|
methods: [POST]
|
|
|
|
entity_delete:
|
|
path: /test/{id}
|
|
controller: App\Controller\EntityController::deleteSubmit
|
|
methods: [DELETE]
|