mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-13 05:44:24 +00:00
36 lines
968 B
YAML
36 lines
968 B
YAML
admin_scope:
|
|
path: /
|
|
controller: Chill\MainBundle\Controller\ScopeController::indexAction
|
|
options:
|
|
menus:
|
|
admin_permissions:
|
|
order: 200
|
|
label: List circles
|
|
|
|
admin_scope_show:
|
|
path: /{id}/show
|
|
controller: Chill\MainBundle\Controller\ScopeController::showAction
|
|
|
|
admin_scope_new:
|
|
path: /new
|
|
controller: Chill\MainBundle\Controller\ScopeController::newAction
|
|
options:
|
|
menus:
|
|
admin_permissions:
|
|
order: 201
|
|
label: New circle
|
|
|
|
admin_scope_create:
|
|
path: /create
|
|
controller: Chill\MainBundle\Controller\ScopeController::createAction
|
|
methods: POST
|
|
|
|
admin_scope_edit:
|
|
path: /{id}/edit
|
|
controller: Chill\MainBundle\Controller\ScopeController::editAction
|
|
|
|
admin_scope_update:
|
|
path: /{id}/update
|
|
controller: Chill\MainBundle\Controller\ScopeController::updateAction
|
|
methods: [POST, PUT]
|