chill-bundles/config/routes/participation.yaml

34 lines
1.2 KiB
YAML

chill_event_participation_new:
path: /new
controller: Chill\EventBundle\Controller\ParticipationController::newAction
chill_event_participation_create:
path: /create
controller: Chill\EventBundle\Controller\ParticipationController::createAction
chill_event_participation_edit:
path: /{participation_id}/edit
controller: Chill\EventBundle\Controller\ParticipationController::editAction
chill_event_participation_update:
path: /{participation_id}/update
controller: Chill\EventBundle\Controller\ParticipationController::updateAction
methods: [POST]
chill_event_participation_edit_multiple:
path: /{event_id}/edit_multiple
controller: Chill\EventBundle\Controller\ParticipationController::editMultipleAction
chill_event_participation_update_multiple:
path: /{event_id}/update_multiple
controller: Chill\EventBundle\Controller\ParticipationController::updateMultipleAction
methods: [POST]
chill_event_participation_delete:
path: /{participation_id}/delete
requirements:
participation_id: \d+
controller: Chill\EventBundle\Controller\ParticipationController::deleteAction
methods: [ GET, DELETE ]