feature: update an existing participation

The update allow to modify the status and role of a participation.

ref #8
This commit is contained in:
2016-03-24 14:18:03 +01:00
parent 627b9fb08f
commit 993882e925
6 changed files with 148 additions and 2 deletions

View File

@@ -5,3 +5,12 @@ chill_event_participation_new:
chill_event_participation_create:
path: /create
defaults: { _controller: ChillEventBundle:Participation:create }
chill_event_participation_edit:
path: /{participation_id}/edit
defaults: { _controller: ChillEventBundle:Participation:edit }
chill_event_participation_update:
path: /{participation_id}/update
defaults: { _controller: ChillEventBundle:Participation:update }
methods: [POST]