35 lines
1 KiB
YAML
35 lines
1 KiB
YAML
customer_location_list:
|
|
path: /customer-locations
|
|
controller: App\Controller\CustomerLocationController::index
|
|
methods: [GET]
|
|
|
|
customer_location_rows:
|
|
path: /customer-locations/rowdata
|
|
controller: App\Controller\CustomerLocationController::datatableRows
|
|
methods: [POST]
|
|
|
|
customer_location_add_form:
|
|
path: /customer-locations/newform
|
|
controller: App\Controller\CustomerLocationController::addForm
|
|
methods: [GET]
|
|
|
|
customer_location_add_submit:
|
|
path: /customer-locations
|
|
controller: App\Controller\CustomerLocationController::addSubmit
|
|
methods: [POST]
|
|
|
|
customer_location_update_form:
|
|
path: /customer-locations/{id}
|
|
controller: App\Controller\CustomerLocationController::updateForm
|
|
methods: [GET]
|
|
|
|
customer_location_update_submit:
|
|
path: /customer-locations/{id}
|
|
controller: App\Controller\CustomerLocationController::updateSubmit
|
|
methods: [POST]
|
|
|
|
customer_location_delete:
|
|
path: /customer-locations/{id}
|
|
controller: App\Controller\CustomerLocationController::deleteSubmit
|
|
methods: [DELETE]
|
|
|