mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-24 11:06:14 +00:00
31 lines
1017 B
YAML
31 lines
1017 B
YAML
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]
|