31 lines
870 B
YAML

chill_event_admin_role:
path: /
defaults: { _controller: "ChillEventBundle:Role:index" }
chill_event_admin_role_show:
path: /{id}/show
defaults: { _controller: "ChillEventBundle:Role:show" }
chill_event_admin_role_new:
path: /new
defaults: { _controller: "ChillEventBundle:Role:new" }
chill_event_admin_role_create:
path: /create
defaults: { _controller: "ChillEventBundle:Role:create" }
methods: POST
chill_event_admin_role_edit:
path: /{id}/edit
defaults: { _controller: "ChillEventBundle:Role:edit" }
chill_event_admin_role_update:
path: /{id}/update
defaults: { _controller: "ChillEventBundle:Role:update" }
methods: [POST, PUT]
chill_event_admin_role_delete:
path: /{id}/delete
defaults: { _controller: "ChillEventBundle:Role:delete" }
methods: [POST, DELETE]