resq/config/routes/test.yaml

34 lines
841 B
YAML

test_list:
path: /test
controller: App\Controller\EntityController::index
methods: [GET]
test_type_rows:
path: /test/rowdata
controller: App\Controller\EntityController::datatableRows
methods: [POST]
test_type_add_form:
path: /test/newform
controller: App\Controller\EntityController::addForm
methods: [GET]
test_type_add_submit:
path: /test
controller: App\Controller\EntityController::addSubmit
methods: [POST]
test_type_update_form:
path: /test/{id}
controller: App\Controller\EntityController::updateForm
methods: [GET]
test_type_update_submit:
path: /test/{id}
controller: App\Controller\EntityController::updateSubmit
methods: [POST]
test_type_delete:
path: /test/{id}
controller: App\Controller\EntityController::deleteSubmit
methods: [DELETE]