mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-18 08:14:24 +00:00
31 lines
764 B
YAML
31 lines
764 B
YAML
event:
|
|
path: /
|
|
defaults: { _controller: "ChillEventBundle:Event:index" }
|
|
|
|
event_show:
|
|
path: /{event_id}/show
|
|
defaults: { _controller: "ChillEventBundle:Event:show" }
|
|
|
|
event_new:
|
|
path: /new
|
|
defaults: { _controller: "ChillEventBundle:Event:new" }
|
|
|
|
event_create:
|
|
path: /create
|
|
defaults: { _controller: "ChillEventBundle:Event:create" }
|
|
methods: POST
|
|
|
|
event_edit:
|
|
path: /{id}/edit
|
|
defaults: { _controller: "ChillEventBundle:Event:edit" }
|
|
|
|
event_update:
|
|
path: /{id}/update
|
|
defaults: { _controller: "ChillEventBundle:Event:update" }
|
|
methods: [POST, PUT]
|
|
|
|
event_delete:
|
|
path: /{id}/delete
|
|
defaults: { _controller: "ChillEventBundle:Event:delete" }
|
|
methods: [POST, DELETE]
|