mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-18 16:24:24 +00:00
31 lines
1020 B
YAML
31 lines
1020 B
YAML
customfieldsgroup:
|
|
path: /
|
|
defaults: { _controller: "ChillCustomFieldsBundle:CustomFieldsGroup:index" }
|
|
|
|
customfieldsgroup_show:
|
|
path: /{id}/show
|
|
defaults: { _controller: "ChillCustomFieldsBundle:CustomFieldsGroup:show" }
|
|
|
|
customfieldsgroup_new:
|
|
path: /new
|
|
defaults: { _controller: "ChillCustomFieldsBundle:CustomFieldsGroup:new" }
|
|
|
|
customfieldsgroup_create:
|
|
path: /create
|
|
defaults: { _controller: "ChillCustomFieldsBundle:CustomFieldsGroup:create" }
|
|
requirements: { _method: post }
|
|
|
|
customfieldsgroup_edit:
|
|
path: /{id}/edit
|
|
defaults: { _controller: "ChillCustomFieldsBundle:CustomFieldsGroup:edit" }
|
|
|
|
customfieldsgroup_update:
|
|
path: /{id}/update
|
|
defaults: { _controller: "ChillCustomFieldsBundle:CustomFieldsGroup:update" }
|
|
requirements: { _method: post|put }
|
|
|
|
customfieldsgroup_delete:
|
|
path: /{id}/delete
|
|
defaults: { _controller: "ChillCustomFieldsBundle:CustomFieldsGroup:delete" }
|
|
requirements: { _method: post|delete }
|