mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-19 00:34:24 +00:00
31 lines
870 B
YAML
31 lines
870 B
YAML
chill_event_admin_role:
|
|
path: /
|
|
defaults: { _controller: "ChillEventBundle:Role:index" }
|
|
|
|
chill_event_admin_role_show:
|
|
path: /{id}/show
|
|
defaults: { _controller: "ChillEventBundle:Role:show" }
|
|
|
|
chill_event_admin_role_new:
|
|
path: /new
|
|
defaults: { _controller: "ChillEventBundle:Role:new" }
|
|
|
|
chill_event_admin_role_create:
|
|
path: /create
|
|
defaults: { _controller: "ChillEventBundle:Role:create" }
|
|
methods: POST
|
|
|
|
chill_event_admin_role_edit:
|
|
path: /{id}/edit
|
|
defaults: { _controller: "ChillEventBundle:Role:edit" }
|
|
|
|
chill_event_admin_role_update:
|
|
path: /{id}/update
|
|
defaults: { _controller: "ChillEventBundle:Role:update" }
|
|
methods: [POST, PUT]
|
|
|
|
chill_event_admin_role_delete:
|
|
path: /{id}/delete
|
|
defaults: { _controller: "ChillEventBundle:Role:delete" }
|
|
methods: [POST, DELETE]
|