mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-18 08:14:24 +00:00
38 lines
1.0 KiB
YAML
38 lines
1.0 KiB
YAML
chill_event_list_most_recent:
|
|
path: most_recent
|
|
defaults: { _controller: "ChillEventBundle:Event:mostRecentIndex" }
|
|
options:
|
|
menus:
|
|
section:
|
|
order: 90
|
|
label: Events
|
|
icons: [calendar]
|
|
|
|
chill_event__event_show:
|
|
path: /{event_id}/show
|
|
defaults: { _controller: "ChillEventBundle:Event:show" }
|
|
|
|
chill_event__event_new:
|
|
path: /new
|
|
defaults: { _controller: "ChillEventBundle:Event:new" }
|
|
options:
|
|
menus:
|
|
section:
|
|
order: 11
|
|
label: Add an event
|
|
icons: [plus, calendar-o]
|
|
|
|
chill_event__event_create:
|
|
path: /create
|
|
defaults: { _controller: "ChillEventBundle:Event:create" }
|
|
methods: POST
|
|
|
|
chill_event__event_edit:
|
|
path: /{event_id}/edit
|
|
defaults: { _controller: "ChillEventBundle:Event:edit" }
|
|
|
|
chill_event__event_update:
|
|
path: /{event_id}/update
|
|
defaults: { _controller: "ChillEventBundle:Event:update" }
|
|
methods: [POST, PUT]
|