Adding Report Entity

This commit is contained in:
Marc Ducobu
2014-11-07 16:34:09 +01:00
parent a911c7aeae
commit 8d4ad512bd
8 changed files with 547 additions and 17 deletions

View File

@@ -0,0 +1,30 @@
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 }