mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-20 09:14:23 +00:00
31 lines
866 B
YAML
31 lines
866 B
YAML
adress:
|
|
path: /
|
|
defaults: { _controller: "ChillCustomFieldsBundle:Adress:index" }
|
|
|
|
adress_show:
|
|
path: /{id}/show
|
|
defaults: { _controller: "ChillCustomFieldsBundle:Adress:show" }
|
|
|
|
adress_new:
|
|
path: /new
|
|
defaults: { _controller: "ChillCustomFieldsBundle:Adress:new" }
|
|
|
|
adress_create:
|
|
path: /create
|
|
defaults: { _controller: "ChillCustomFieldsBundle:Adress:create" }
|
|
requirements: { _method: post }
|
|
|
|
adress_edit:
|
|
path: /{id}/edit
|
|
defaults: { _controller: "ChillCustomFieldsBundle:Adress:edit" }
|
|
|
|
adress_update:
|
|
path: /{id}/update
|
|
defaults: { _controller: "ChillCustomFieldsBundle:Adress:update" }
|
|
requirements: { _method: post|put }
|
|
|
|
adress_delete:
|
|
path: /{id}/delete
|
|
defaults: { _controller: "ChillCustomFieldsBundle:Adress:delete" }
|
|
requirements: { _method: post|delete }
|