mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-10-01 10:59:45 +00:00
Prepare for moving into monorepo
This commit is contained in:
30
src/Bundle/ChillActivityBundle/config/routes/activity.yaml
Normal file
30
src/Bundle/ChillActivityBundle/config/routes/activity.yaml
Normal file
@@ -0,0 +1,30 @@
|
||||
chill_activity_activity_list:
|
||||
path: /{_locale}/person/{person_id}/activity/
|
||||
controller: Chill\ActivityBundle\Controller\ActivityController::listAction
|
||||
|
||||
chill_activity_activity_show:
|
||||
path: /{_locale}/person/{person_id}/activity/{id}/show
|
||||
controller: Chill\ActivityBundle\Controller\ActivityController::showAction
|
||||
|
||||
chill_activity_activity_new:
|
||||
path: /{_locale}/person/{person_id}/activity/new
|
||||
controller: Chill\ActivityBundle\Controller\ActivityController::newAction
|
||||
|
||||
chill_activity_activity_create:
|
||||
path: /{_locale}/person/{person_id}/activity/create
|
||||
controller: Chill\ActivityBundle\Controller\ActivityController::createAction
|
||||
methods: POST
|
||||
|
||||
chill_activity_activity_edit:
|
||||
path: /{_locale}/person/{person_id}/activity/{id}/edit
|
||||
controller: Chill\ActivityBundle\Controller\ActivityController::editAction
|
||||
|
||||
chill_activity_activity_update:
|
||||
path: /{_locale}/person/{person_id}/activity/{id}/update
|
||||
controller: Chill\ActivityBundle\Controller\ActivityController::updateAction
|
||||
methods: [POST, PUT]
|
||||
|
||||
chill_activity_activity_delete:
|
||||
path: /{_locale}/person/{person_id}/activity/{id}/delete
|
||||
controller: Chill\ActivityBundle\Controller\ActivityController::deleteAction
|
||||
methods: [GET, POST, DELETE]
|
Reference in New Issue
Block a user