mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
38 lines
1.1 KiB
YAML
38 lines
1.1 KiB
YAML
blopentity:
|
|
path: /
|
|
defaults: { _controller: "CLCustomFieldsBundle:BlopEntity:index" }
|
|
|
|
blopentity_show:
|
|
path: /{id}/show
|
|
defaults: { _controller: "CLCustomFieldsBundle:BlopEntity:show" }
|
|
|
|
blopentity_new:
|
|
path: /new
|
|
defaults: { _controller: "CLCustomFieldsBundle:BlopEntity:new" }
|
|
|
|
blopentity_create:
|
|
path: /create
|
|
defaults: { _controller: "CLCustomFieldsBundle:BlopEntity:create" }
|
|
requirements: { _method: post }
|
|
|
|
blopentity_edit:
|
|
path: /{id}/edit
|
|
defaults: { _controller: "CLCustomFieldsBundle:BlopEntity:edit" }
|
|
|
|
blopentity_update:
|
|
path: /{id}/update
|
|
defaults: { _controller: "CLCustomFieldsBundle:BlopEntity:update" }
|
|
requirements: { _method: post|put }
|
|
|
|
blopentity_delete:
|
|
path: /{id}/delete
|
|
defaults: { _controller: "CLCustomFieldsBundle:BlopEntity:delete" }
|
|
requirements: { _method: post|delete }
|
|
|
|
blopentity_cfget:
|
|
path: /{id}/cfget/{key}
|
|
defaults: { _controller: "CLCustomFieldsBundle:BlopEntity:cfGet" }
|
|
|
|
blopentity_cfset:
|
|
path: /{id}/cfset/{key}/{value}
|
|
defaults: { _controller: "CLCustomFieldsBundle:BlopEntity:cfSet" } |