resq/config/routes/hub.yaml

36 lines
757 B
YAML

# hub
hub_list:
path: /hubs
controller: App\Controller\HubController::index
hub_rows:
path: /hubs/rows
controller: App\Controller\HubController::rows
methods: [POST]
hub_create:
path: /hubs/create
controller: App\Controller\HubController::addForm
methods: [GET]
hub_create_submit:
path: /hubs/create
controller: App\Controller\HubController::addSubmit
methods: [POST]
hub_update:
path: /hubs/{id}
controller: App\Controller\HubController::updateForm
methods: [GET]
hub_update_submit:
path: /hubs/{id}
controller: App\Controller\HubController::updateSubmit
methods: [POST]
hub_delete:
path: /hubs/{id}
controller: App\Controller\HubController::destroy
methods: [DELETE]