continue CRUD user

This commit is contained in:
2021-09-23 13:30:04 +02:00
parent b5c2dd7bd2
commit 72b1916da8
12 changed files with 231 additions and 423 deletions

View File

@@ -1,44 +1,44 @@
admin_user:
path: /
controller: Chill\MainBundle\Controller\UserController::indexAction
admin_user_show:
path: /{id}/show
controller: Chill\MainBundle\Controller\UserController::showAction
admin_user_new:
path: /new
controller: Chill\MainBundle\Controller\UserController::newAction
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]
#admin_user:
# path: /
# controller: Chill\MainBundle\Controller\UserController::indexAction
#
#admin_user_show:
# path: /{id}/show
# controller: Chill\MainBundle\Controller\UserController::showAction
#
#admin_user_new:
# path: /new
# controller: Chill\MainBundle\Controller\UserController::newAction
#
#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]