34 lines
920 B
YAML
34 lines
920 B
YAML
price_tier_list:
|
|
path: /price-tiers
|
|
controller: App\Controller\PriceTierController::index
|
|
methods: [GET]
|
|
|
|
price_tier_rows:
|
|
path: /price-tiers/rows
|
|
controller: App\Controller\PriceTierController::datatableRows
|
|
methods: [POST]
|
|
|
|
price_tier_add_form:
|
|
path: /price-tiers/newform
|
|
controller: App\Controller\PriceTierController::addForm
|
|
methods: [GET]
|
|
|
|
price_tier_add_submit:
|
|
path: /price-tiers
|
|
controller: App\Controller\PriceTierController::addSubmit
|
|
methods: [POST]
|
|
|
|
price_tier_update_form:
|
|
path: /price-tiers/{id}
|
|
controller: App\Controller\PriceTierController::updateForm
|
|
methods: [GET]
|
|
|
|
price_tier_update_submit:
|
|
path: /price-tiers/{id}
|
|
controller: App\Controller\PriceTierController::updateSubmit
|
|
methods: [POST]
|
|
|
|
price_tier_delete:
|
|
path: /price-tiers/{id}
|
|
controller: App\Controller\PriceTierController::deleteSubmit
|
|
methods: [DELETE]
|