mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-20 14:43:49 +00:00
rename config 'routing' to 'routes'
This commit is contained in:
35
config/routes/center.yml
Normal file
35
config/routes/center.yml
Normal file
@@ -0,0 +1,35 @@
|
||||
admin_center:
|
||||
path: /
|
||||
defaults: { _controller: "ChillMainBundle:Center:index" }
|
||||
options:
|
||||
menus:
|
||||
admin_permissions:
|
||||
order: 100
|
||||
label: Center list
|
||||
|
||||
admin_center_show:
|
||||
path: /{id}/show
|
||||
defaults: { _controller: "ChillMainBundle:Center:show" }
|
||||
|
||||
admin_center_new:
|
||||
path: /new
|
||||
defaults: { _controller: "ChillMainBundle:Center:new" }
|
||||
options:
|
||||
menus:
|
||||
admin_permissions:
|
||||
order: 101
|
||||
label: New center
|
||||
|
||||
admin_center_create:
|
||||
path: /create
|
||||
defaults: { _controller: "ChillMainBundle:Center:create" }
|
||||
methods: POST
|
||||
|
||||
admin_center_edit:
|
||||
path: /{id}/edit
|
||||
defaults: { _controller: "ChillMainBundle:Center:edit" }
|
||||
|
||||
admin_center_update:
|
||||
path: /{id}/update
|
||||
defaults: { _controller: "ChillMainBundle:Center:update" }
|
||||
methods: [POST, PUT]
|
17
config/routes/exports.yml
Normal file
17
config/routes/exports.yml
Normal file
@@ -0,0 +1,17 @@
|
||||
chill_main_export_index:
|
||||
path: /
|
||||
defaults: { _controller: ChillMainBundle:Export:index }
|
||||
|
||||
chill_main_export_new:
|
||||
path: /new/{alias}
|
||||
defaults: { _controller: ChillMainBundle:Export:new }
|
||||
|
||||
chill_main_export_generate:
|
||||
path: /generate/{alias}
|
||||
defaults: { _controller: ChillMainBundle:Export:generate }
|
||||
methods: [GET]
|
||||
|
||||
chill_main_export_download:
|
||||
path: /download/{alias}
|
||||
defaults: { _controller: ChillMainBundle:Export:downloadResult }
|
||||
methods: [ GET ]
|
4
config/routes/password.yml
Normal file
4
config/routes/password.yml
Normal file
@@ -0,0 +1,4 @@
|
||||
change_my_password:
|
||||
path: /edit
|
||||
defaults: { _controller: ChillMainBundle:Password:userPassword }
|
||||
|
15
config/routes/password_recover.yml
Normal file
15
config/routes/password_recover.yml
Normal file
@@ -0,0 +1,15 @@
|
||||
password_recover:
|
||||
path: /recover
|
||||
defaults: { _controller: ChillMainBundle:Password:recover }
|
||||
|
||||
password_request_recover:
|
||||
path: /request-recover
|
||||
defaults: { _controller: ChillMainBundle:Password:requestRecover }
|
||||
|
||||
password_request_recover_confirm:
|
||||
path: /request-confirm
|
||||
defaults: { _controller: ChillMainBundle:Password:requestRecoverConfirm }
|
||||
|
||||
password_request_recover_changed:
|
||||
path: /request-changed
|
||||
defaults: { _controller: ChillMainBundle:Password:changeConfirmed }
|
45
config/routes/permissionsgroup.yml
Normal file
45
config/routes/permissionsgroup.yml
Normal file
@@ -0,0 +1,45 @@
|
||||
admin_permissionsgroup:
|
||||
path: /
|
||||
defaults: { _controller: "ChillMainBundle:PermissionsGroup:index" }
|
||||
options:
|
||||
menus:
|
||||
admin_permissions:
|
||||
order: 300
|
||||
label: Permissions group list
|
||||
|
||||
admin_permissionsgroup_show:
|
||||
path: /{id}/show
|
||||
defaults: { _controller: "ChillMainBundle:PermissionsGroup:show" }
|
||||
|
||||
admin_permissionsgroup_new:
|
||||
path: /new
|
||||
defaults: { _controller: "ChillMainBundle:PermissionsGroup:new" }
|
||||
options:
|
||||
menus:
|
||||
admin_permissions:
|
||||
order: 301
|
||||
label: New permission group
|
||||
|
||||
admin_permissionsgroup_create:
|
||||
path: /create
|
||||
defaults: { _controller: "ChillMainBundle:PermissionsGroup:create" }
|
||||
methods: POST
|
||||
|
||||
admin_permissionsgroup_edit:
|
||||
path: /{id}/edit
|
||||
defaults: { _controller: "ChillMainBundle:PermissionsGroup:edit" }
|
||||
|
||||
admin_permissionsgroup_update:
|
||||
path: /{id}/update
|
||||
defaults: { _controller: "ChillMainBundle:PermissionsGroup:update" }
|
||||
methods: [POST, PUT]
|
||||
|
||||
admin_permissionsgroup_delete_role_scope:
|
||||
path: /{pgid}/delete_link_role_scope/{rsid}
|
||||
defaults: { _controller: "ChillMainBundle:PermissionsGroup:deleteLinkRoleScope" }
|
||||
methods: [DELETE]
|
||||
|
||||
admin_permissionsgroup_add_role_scope:
|
||||
path: /{id}/add_link_role_scope
|
||||
defaults: { _controller: "ChillMainBundle:PermissionsGroup:addLinkRoleScope" }
|
||||
methods: [PUT]
|
4
config/routes/postal-code.yml
Normal file
4
config/routes/postal-code.yml
Normal file
@@ -0,0 +1,4 @@
|
||||
chill_main_postal_code_search:
|
||||
path: /search
|
||||
defaults: { _controller: ChillMainBundle:PostalCode:search }
|
||||
|
35
config/routes/scope.yml
Normal file
35
config/routes/scope.yml
Normal file
@@ -0,0 +1,35 @@
|
||||
admin_scope:
|
||||
path: /
|
||||
defaults: { _controller: "ChillMainBundle:Scope:index" }
|
||||
options:
|
||||
menus:
|
||||
admin_permissions:
|
||||
order: 200
|
||||
label: List circles
|
||||
|
||||
admin_scope_show:
|
||||
path: /{id}/show
|
||||
defaults: { _controller: "ChillMainBundle:Scope:show" }
|
||||
|
||||
admin_scope_new:
|
||||
path: /new
|
||||
defaults: { _controller: "ChillMainBundle:Scope:new" }
|
||||
options:
|
||||
menus:
|
||||
admin_permissions:
|
||||
order: 201
|
||||
label: New circle
|
||||
|
||||
admin_scope_create:
|
||||
path: /create
|
||||
defaults: { _controller: "ChillMainBundle:Scope:create" }
|
||||
methods: POST
|
||||
|
||||
admin_scope_edit:
|
||||
path: /{id}/edit
|
||||
defaults: { _controller: "ChillMainBundle:Scope:edit" }
|
||||
|
||||
admin_scope_update:
|
||||
path: /{id}/update
|
||||
defaults: { _controller: "ChillMainBundle:Scope:update" }
|
||||
methods: [POST, PUT]
|
54
config/routes/user.yml
Normal file
54
config/routes/user.yml
Normal file
@@ -0,0 +1,54 @@
|
||||
admin_user:
|
||||
path: /
|
||||
defaults: { _controller: "ChillMainBundle:User:index" }
|
||||
options:
|
||||
menus:
|
||||
admin_permissions:
|
||||
order: 400
|
||||
label: List users
|
||||
|
||||
admin_user_show:
|
||||
path: /{id}/show
|
||||
defaults: { _controller: "ChillMainBundle:User:show" }
|
||||
|
||||
admin_user_new:
|
||||
path: /new
|
||||
defaults: { _controller: "ChillMainBundle:User:new" }
|
||||
options:
|
||||
menus:
|
||||
admin_permissions:
|
||||
order: 401
|
||||
label: Add a new user
|
||||
|
||||
admin_user_create:
|
||||
path: /create
|
||||
defaults: { _controller: "ChillMainBundle:User:create" }
|
||||
methods: POST
|
||||
|
||||
admin_user_edit:
|
||||
path: /{id}/edit
|
||||
defaults: { _controller: "ChillMainBundle:User:edit" }
|
||||
|
||||
admin_user_edit_password:
|
||||
path: /{id}/edit_password
|
||||
defaults: { _controller: "ChillMainBundle:User:editPassword" }
|
||||
|
||||
admin_user_update:
|
||||
path: /{id}/update
|
||||
defaults: { _controller: "ChillMainBundle:User:update" }
|
||||
methods: [POST, PUT]
|
||||
|
||||
admin_user_update_password:
|
||||
path: /{id}/update_password
|
||||
defaults: { _controller: "ChillMainBundle:User:updatePassword" }
|
||||
methods: [POST, PUT]
|
||||
|
||||
admin_user_delete_group_center:
|
||||
path: /{uid}/delete_link_groupcenter/{gcid}
|
||||
defaults: { _controller: "ChillMainBundle:User:deleteLinkGroupCenter" }
|
||||
methods: [DELETE]
|
||||
|
||||
admin_user_add_group_center:
|
||||
path: /{uid}/add_link_groupcenter
|
||||
defaults: { _controller: "ChillMainBundle:User:addLinkGroupCenter" }
|
||||
methods: [POST]
|
Reference in New Issue
Block a user