mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-21 01:34:23 +00:00
49 lines
1.4 KiB
YAML
49 lines
1.4 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_pickcenter:
|
|
path: /new/pick-center
|
|
defaults: { _controller: "ChillEventBundle:Event:newPickCenter" }
|
|
options:
|
|
menus:
|
|
section:
|
|
order: 11
|
|
label: Add an event
|
|
icons: [plus, calendar-o]
|
|
|
|
chill_event__event_new:
|
|
path: /new
|
|
defaults: { _controller: "ChillEventBundle:Event:new" }
|
|
methods: [ GET, 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]
|
|
|
|
chill_event__list_by_person:
|
|
path: /{person_id}/list
|
|
defaults: { _controller: "ChillEventBundle:Event:listByPerson" }
|
|
methods: [ GET ]
|
|
|
|
chill_event__event_delete:
|
|
path: /{event_id}/delete
|
|
requirements:
|
|
event_id: \d+
|
|
defaults: { _controller: "ChillEventBundle:Event:delete" }
|
|
methods: [ GET, DELETE ] |