34 lines
1 KiB
YAML
34 lines
1 KiB
YAML
service_offering_list:
|
|
path: /service-offerings
|
|
controller: App\Controller\ServiceOfferingController::index
|
|
methods: [GET]
|
|
|
|
service_offering_rows:
|
|
path: /service-offerings/rowdata
|
|
controller: App\Controller\ServiceOfferingController::datatableRows
|
|
methods: [POST]
|
|
|
|
service_offering_add_form:
|
|
path: /service-offerings/newform
|
|
controller: App\Controller\ServiceOfferingController::addForm
|
|
methods: [GET]
|
|
|
|
service_offering_add_submit:
|
|
path: /service-offerings
|
|
controller: App\Controller\ServiceOfferingController::addSubmit
|
|
methods: [POST]
|
|
|
|
service_offering_update_form:
|
|
path: /service-offerings/{id}
|
|
controller: App\Controller\ServiceOfferingController::updateForm
|
|
methods: [GET]
|
|
|
|
service_offering_update_submit:
|
|
path: /service-offerings/{id}
|
|
controller: App\Controller\ServiceOfferingController::updateSubmit
|
|
methods: [POST]
|
|
|
|
service_offering_delete:
|
|
path: /service-offerings/{id}
|
|
controller: App\Controller\ServiceOfferingController::deleteSubmit
|
|
methods: [DELETE]
|