mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-27 20:46:14 +00:00
36 lines
919 B
YAML
36 lines
919 B
YAML
admin_center:
|
|
path: /
|
|
defaults: { controller: ChillMain\CenterController::index }
|
|
options:
|
|
menus:
|
|
admin_permissions:
|
|
order: 100
|
|
label: Center list
|
|
|
|
admin_center_show:
|
|
path: /{id}/show
|
|
defaults: { controller: ChillMain\CenterController::show }
|
|
|
|
admin_center_new:
|
|
path: /new
|
|
defaults: { controller: ChillMain\CenterController::new }
|
|
options:
|
|
menus:
|
|
admin_permissions:
|
|
order: 101
|
|
label: New center
|
|
|
|
admin_center_create:
|
|
path: /create
|
|
defaults: { controller: ChillMain\CenterController::create }
|
|
methods: POST
|
|
|
|
admin_center_edit:
|
|
path: /{id}/edit
|
|
defaults: { controller: ChillMain\CenterController::edit }
|
|
|
|
admin_center_update:
|
|
path: /{id}/update
|
|
defaults: { controller: ChillMain\CenterController::update }
|
|
methods: [POST, PUT]
|