add export button, route and controller method

This commit is contained in:
2019-07-17 11:53:56 +02:00
parent ad45e71051
commit c26b4f1ae7
4 changed files with 30 additions and 0 deletions

View File

@@ -40,3 +40,10 @@ chill_event__list_by_person:
path: /{person_id}/list
defaults: { _controller: "ChillEventBundle:Event:listByPerson" }
methods: [ GET ]
chill_event__event_export_participations:
path: /{event_id}/export/participations
defaults: { _controller: "ChillEventBundle:Event:exportParticipations" }
requirements:
event_id: \d+
methods: [ GET ]