33 lines
973 B
YAML
33 lines
973 B
YAML
shift_schedule_list:
|
|
path: /shift_schedules
|
|
controller: App\Controller\ShiftScheduleController::index
|
|
|
|
shift_schedule_rows:
|
|
path: /shift_schedules/rows
|
|
controller: App\Controller\ShiftScheduleController::rows
|
|
methods: [POST]
|
|
|
|
shift_schedule_create:
|
|
path: /shift_schedules/create
|
|
controller: App\Controller\ShiftScheduleController::addForm
|
|
methods: [GET]
|
|
|
|
shift_schedule_create_submit:
|
|
path: /shift_schedules/create
|
|
controller: App\Controller\ShiftScheduleController::addSubmit
|
|
methods: [POST]
|
|
|
|
shift_schedule_update:
|
|
path: /shift_schedules/{id}
|
|
controller: App\Controller\ShiftScheduleController::updateForm
|
|
methods: [GET]
|
|
|
|
shift_schedule_update_submit:
|
|
path: /shift_schedules/{id}
|
|
controller: App\Controller\ShiftScheduleController::updateSubmit
|
|
methods: [POST]
|
|
|
|
shift_schedule_delete:
|
|
path: /shift_schedules/{id}
|
|
controller: App\Controller\ShiftScheduleController::destroy
|
|
methods: [DELETE]
|