mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-12 21:34:25 +00:00
55 lines
1.6 KiB
YAML
55 lines
1.6 KiB
YAML
admin_user:
|
|
path: /
|
|
controller: Chill\MainBundle\Controller\UserController::indexAction
|
|
options:
|
|
menus:
|
|
admin_permissions:
|
|
order: 400
|
|
label: List users
|
|
|
|
admin_user_show:
|
|
path: /{id}/show
|
|
controller: Chill\MainBundle\Controller\UserController::showAction
|
|
|
|
admin_user_new:
|
|
path: /new
|
|
controller: Chill\MainBundle\Controller\UserController::newAction
|
|
options:
|
|
menus:
|
|
admin_permissions:
|
|
order: 401
|
|
label: Add a new user
|
|
|
|
admin_user_create:
|
|
path: /create
|
|
controller: Chill\MainBundle\Controller\UserController::createAction
|
|
methods: POST
|
|
|
|
admin_user_edit:
|
|
path: /{id}/edit
|
|
controller: Chill\MainBundle\Controller\UserController::editAction
|
|
|
|
admin_user_edit_password:
|
|
path: /{id}/edit_password
|
|
controller: Chill\MainBundle\Controller\UserController::editPasswordAction
|
|
|
|
admin_user_update:
|
|
path: /{id}/update
|
|
controller: Chill\MainBundle\Controller\UserController::updateAction
|
|
methods: [POST, PUT]
|
|
|
|
admin_user_update_password:
|
|
path: /{id}/update_password
|
|
controller: Chill\MainBundle\Controller\UserController::updatePasswordAction
|
|
methods: [POST, PUT]
|
|
|
|
admin_user_delete_group_center:
|
|
path: /{uid}/delete_link_groupcenter/{gcid}
|
|
controller: Chill\MainBundle\Controller\UserController::deleteLinkGroupCenterAction
|
|
methods: [DELETE]
|
|
|
|
admin_user_add_group_center:
|
|
path: /{uid}/add_link_groupcenter
|
|
controller: Chill\MainBundle\Controller\UserController::addLinkGroupCenterAction
|
|
methods: [POST]
|