mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-22 18:24:23 +00:00
31 lines
824 B
YAML
31 lines
824 B
YAML
report:
|
|
path: /
|
|
defaults: { _controller: "ChillReportBundle:Report:index" }
|
|
|
|
report_show:
|
|
path: /{id}/show
|
|
defaults: { _controller: "ChillReportBundle:Report:show" }
|
|
|
|
report_new:
|
|
path: /new
|
|
defaults: { _controller: "ChillReportBundle:Report:new" }
|
|
|
|
report_create:
|
|
path: /create
|
|
defaults: { _controller: "ChillReportBundle:Report:create" }
|
|
requirements: { _method: post }
|
|
|
|
report_edit:
|
|
path: /{id}/edit
|
|
defaults: { _controller: "ChillReportBundle:Report:edit" }
|
|
|
|
report_update:
|
|
path: /{id}/update
|
|
defaults: { _controller: "ChillReportBundle:Report:update" }
|
|
requirements: { _method: post|put }
|
|
|
|
report_delete:
|
|
path: /{id}/delete
|
|
defaults: { _controller: "ChillReportBundle:Report:delete" }
|
|
requirements: { _method: post|delete }
|