fix folder name

This commit is contained in:
2021-03-18 13:37:13 +01:00
parent a2f6773f5a
commit eaa0ad925f
1578 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
admin_center:
path: /
controller: Chill\MainBundle\Controller\CenterController::indexAction
options:
menus:
admin_permissions:
order: 100
label: Center list
admin_center_show:
path: /{id}/show
controller: Chill\MainBundle\Controller\CenterController::showAction
admin_center_new:
path: /new
controller: Chill\MainBundle\Controller\CenterController::newAction
options:
menus:
admin_permissions:
order: 101
label: New center
admin_center_create:
path: /create
controller: Chill\MainBundle\Controller\CenterController::createAction
methods: POST
admin_center_edit:
path: /{id}/edit
controller: Chill\MainBundle\Controller\CenterController::editAction
admin_center_update:
path: /{id}/update
controller: Chill\MainBundle\Controller\CenterController::updateAction
methods: [POST, PUT]

View File

@@ -0,0 +1,17 @@
chill_main_export_index:
path: /
controller: Chill\MainBundle\Controller\ExportController::indexAction
chill_main_export_new:
path: /new/{alias}
controller: Chill\MainBundle\Controller\ExportController::newAction
chill_main_export_generate:
path: /generate/{alias}
controller: Chill\MainBundle\Controller\ExportController::generateAction
methods: [GET]
chill_main_export_download:
path: /download/{alias}
controller: Chill\MainBundle\Controller\ExportController::downloadResultAction
methods: [ GET ]

View File

@@ -0,0 +1,4 @@
change_my_password:
path: /edit
controller: Chill\MainBundle\Controller\PasswordController::userPasswordAction

View File

@@ -0,0 +1,15 @@
password_recover:
path: /recover
controller: Chill\MainBundle\Controller\PasswordController::recoverAction
password_request_recover:
path: /request-recover
controller: Chill\MainBundle\Controller\PasswordController::requestRecoverAction
password_request_recover_confirm:
path: /request-confirm
controller: Chill\MainBundle\Controller\PasswordController::requestRecoverConfirmAction
password_request_recover_changed:
path: /request-changed
controller: Chill\MainBundle\Controller\PasswordController::changeConfirmedAction

View File

@@ -0,0 +1,45 @@
admin_permissionsgroup:
path: /
controller: Chill\MainBundle\Controller\PermissionsGroupController::indexAction
options:
menus:
admin_permissions:
order: 300
label: Permissions group list
admin_permissionsgroup_show:
path: /{id}/show
controller: Chill\MainBundle\Controller\PermissionsGroupController::showAction
admin_permissionsgroup_new:
path: /new
controller: Chill\MainBundle\Controller\PermissionsGroupController::newAction
options:
menus:
admin_permissions:
order: 301
label: New permission group
admin_permissionsgroup_create:
path: /create
controller: Chill\MainBundle\Controller\PermissionsGroupController::createAction
methods: POST
admin_permissionsgroup_edit:
path: /{id}/edit
controller: Chill\MainBundle\Controller\PermissionsGroupController::editAction
admin_permissionsgroup_update:
path: /{id}/update
controller: Chill\MainBundle\Controller\PermissionsGroupController::updateAction
methods: [POST, PUT]
admin_permissionsgroup_delete_role_scope:
path: /{pgid}/delete_link_role_scope/{rsid}
controller: Chill\MainBundle\Controller\PermissionsGroupController::deleteLinkRoleScopeAction
methods: [DELETE]
admin_permissionsgroup_add_role_scope:
path: /{id}/add_link_role_scope
controller: Chill\MainBundle\Controller\PermissionsGroupController::addLinkRoleScopeAction
methods: [PUT]

View File

@@ -0,0 +1,4 @@
chill_main_postal_code_search:
path: /search
controller: Chill\MainBundle\Controller\PostalCodeController::searchAction

View File

@@ -0,0 +1,35 @@
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]

View File

@@ -0,0 +1,54 @@
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]