mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-04 05:44:58 +00:00
Adding generated files
This commit is contained in:
@@ -1,3 +1,19 @@
|
||||
chill_activity_activity:
|
||||
resource: "@ChillActivityBundle/Resources/config/routing/activity.yml"
|
||||
prefix: /activity
|
||||
|
||||
chill_activity_activityreason:
|
||||
resource: "@ChillActivityBundle/Resources/config/routing/activityreason.yml"
|
||||
prefix: /activityreason
|
||||
|
||||
chill_activity_activityreasoncategory:
|
||||
resource: "@ChillActivityBundle/Resources/config/routing/activityreasoncategory.yml"
|
||||
prefix: /activityreasoncategory
|
||||
|
||||
chill_activity_activitytype:
|
||||
resource: "@ChillActivityBundle/Resources/config/routing/activitytype.yml"
|
||||
prefix: /activitytype
|
||||
|
||||
chill_activity_homepage:
|
||||
path: /hello/{name}
|
||||
defaults: { _controller: ChillActivityBundle:Default:index }
|
||||
|
30
Resources/config/routing/activity.yml
Normal file
30
Resources/config/routing/activity.yml
Normal file
@@ -0,0 +1,30 @@
|
||||
activity:
|
||||
path: /
|
||||
defaults: { _controller: "ChillActivityBundle:Activity:index" }
|
||||
|
||||
activity_show:
|
||||
path: /{id}/show
|
||||
defaults: { _controller: "ChillActivityBundle:Activity:show" }
|
||||
|
||||
activity_new:
|
||||
path: /new
|
||||
defaults: { _controller: "ChillActivityBundle:Activity:new" }
|
||||
|
||||
activity_create:
|
||||
path: /create
|
||||
defaults: { _controller: "ChillActivityBundle:Activity:create" }
|
||||
methods: POST
|
||||
|
||||
activity_edit:
|
||||
path: /{id}/edit
|
||||
defaults: { _controller: "ChillActivityBundle:Activity:edit" }
|
||||
|
||||
activity_update:
|
||||
path: /{id}/update
|
||||
defaults: { _controller: "ChillActivityBundle:Activity:update" }
|
||||
methods: [POST, PUT]
|
||||
|
||||
activity_delete:
|
||||
path: /{id}/delete
|
||||
defaults: { _controller: "ChillActivityBundle:Activity:delete" }
|
||||
methods: [POST, DELETE]
|
30
Resources/config/routing/activityreason.yml
Normal file
30
Resources/config/routing/activityreason.yml
Normal file
@@ -0,0 +1,30 @@
|
||||
activityreason:
|
||||
path: /
|
||||
defaults: { _controller: "ChillActivityBundle:ActivityReason:index" }
|
||||
|
||||
activityreason_show:
|
||||
path: /{id}/show
|
||||
defaults: { _controller: "ChillActivityBundle:ActivityReason:show" }
|
||||
|
||||
activityreason_new:
|
||||
path: /new
|
||||
defaults: { _controller: "ChillActivityBundle:ActivityReason:new" }
|
||||
|
||||
activityreason_create:
|
||||
path: /create
|
||||
defaults: { _controller: "ChillActivityBundle:ActivityReason:create" }
|
||||
methods: POST
|
||||
|
||||
activityreason_edit:
|
||||
path: /{id}/edit
|
||||
defaults: { _controller: "ChillActivityBundle:ActivityReason:edit" }
|
||||
|
||||
activityreason_update:
|
||||
path: /{id}/update
|
||||
defaults: { _controller: "ChillActivityBundle:ActivityReason:update" }
|
||||
methods: [POST, PUT]
|
||||
|
||||
activityreason_delete:
|
||||
path: /{id}/delete
|
||||
defaults: { _controller: "ChillActivityBundle:ActivityReason:delete" }
|
||||
methods: [POST, DELETE]
|
30
Resources/config/routing/activityreasoncategory.yml
Normal file
30
Resources/config/routing/activityreasoncategory.yml
Normal file
@@ -0,0 +1,30 @@
|
||||
activityreasoncategory:
|
||||
path: /
|
||||
defaults: { _controller: "ChillActivityBundle:ActivityReasonCategory:index" }
|
||||
|
||||
activityreasoncategory_show:
|
||||
path: /{id}/show
|
||||
defaults: { _controller: "ChillActivityBundle:ActivityReasonCategory:show" }
|
||||
|
||||
activityreasoncategory_new:
|
||||
path: /new
|
||||
defaults: { _controller: "ChillActivityBundle:ActivityReasonCategory:new" }
|
||||
|
||||
activityreasoncategory_create:
|
||||
path: /create
|
||||
defaults: { _controller: "ChillActivityBundle:ActivityReasonCategory:create" }
|
||||
methods: POST
|
||||
|
||||
activityreasoncategory_edit:
|
||||
path: /{id}/edit
|
||||
defaults: { _controller: "ChillActivityBundle:ActivityReasonCategory:edit" }
|
||||
|
||||
activityreasoncategory_update:
|
||||
path: /{id}/update
|
||||
defaults: { _controller: "ChillActivityBundle:ActivityReasonCategory:update" }
|
||||
methods: [POST, PUT]
|
||||
|
||||
activityreasoncategory_delete:
|
||||
path: /{id}/delete
|
||||
defaults: { _controller: "ChillActivityBundle:ActivityReasonCategory:delete" }
|
||||
methods: [POST, DELETE]
|
30
Resources/config/routing/activitytype.yml
Normal file
30
Resources/config/routing/activitytype.yml
Normal file
@@ -0,0 +1,30 @@
|
||||
activitytype:
|
||||
path: /
|
||||
defaults: { _controller: "ChillActivityBundle:ActivityType:index" }
|
||||
|
||||
activitytype_show:
|
||||
path: /{id}/show
|
||||
defaults: { _controller: "ChillActivityBundle:ActivityType:show" }
|
||||
|
||||
activitytype_new:
|
||||
path: /new
|
||||
defaults: { _controller: "ChillActivityBundle:ActivityType:new" }
|
||||
|
||||
activitytype_create:
|
||||
path: /create
|
||||
defaults: { _controller: "ChillActivityBundle:ActivityType:create" }
|
||||
methods: POST
|
||||
|
||||
activitytype_edit:
|
||||
path: /{id}/edit
|
||||
defaults: { _controller: "ChillActivityBundle:ActivityType:edit" }
|
||||
|
||||
activitytype_update:
|
||||
path: /{id}/update
|
||||
defaults: { _controller: "ChillActivityBundle:ActivityType:update" }
|
||||
methods: [POST, PUT]
|
||||
|
||||
activitytype_delete:
|
||||
path: /{id}/delete
|
||||
defaults: { _controller: "ChillActivityBundle:ActivityType:delete" }
|
||||
methods: [POST, DELETE]
|
Reference in New Issue
Block a user