mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-20 22:53:49 +00:00
Adding Report Entity
This commit is contained in:
30
Resources/config/routing/report.yml
Normal file
30
Resources/config/routing/report.yml
Normal 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 }
|
Reference in New Issue
Block a user