Mercurial > hg > isophonics-drupal-site
comparison core/modules/workflows/workflows.routing.yml @ 0:4c8ae668cc8c
Initial import (non-working)
author | Chris Cannam |
---|---|
date | Wed, 29 Nov 2017 16:09:58 +0000 |
parents | |
children | af1871eacc83 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:4c8ae668cc8c |
---|---|
1 entity.workflow.add_state_form: | |
2 path: '/admin/config/workflow/workflows/manage/{workflow}/add_state' | |
3 defaults: | |
4 _entity_form: 'workflow.add-state' | |
5 _title: 'Add state' | |
6 requirements: | |
7 _entity_access: 'workflow.edit' | |
8 | |
9 entity.workflow.edit_state_form: | |
10 path: '/admin/config/workflow/workflows/manage/{workflow}/state/{workflow_state}' | |
11 defaults: | |
12 _entity_form: 'workflow.edit-state' | |
13 _title: 'Edit state' | |
14 requirements: | |
15 _entity_access: 'workflow.edit' | |
16 | |
17 entity.workflow.delete_state_form: | |
18 path: '/admin/config/workflow/workflows/manage/{workflow}/state/{workflow_state}/delete' | |
19 defaults: | |
20 _form: '\Drupal\workflows\Form\WorkflowStateDeleteForm' | |
21 _title: 'Delete state' | |
22 requirements: | |
23 _workflow_state_delete_access: 'true' | |
24 | |
25 entity.workflow.add_transition_form: | |
26 path: '/admin/config/workflow/workflows/manage/{workflow}/add_transition' | |
27 defaults: | |
28 _entity_form: 'workflow.add-transition' | |
29 _title: 'Add transition' | |
30 requirements: | |
31 _entity_access: 'workflow.edit' | |
32 | |
33 entity.workflow.edit_transition_form: | |
34 path: '/admin/config/workflow/workflows/manage/{workflow}/transition/{workflow_transition}' | |
35 defaults: | |
36 _entity_form: 'workflow.edit-transition' | |
37 _title: 'Edit transition' | |
38 requirements: | |
39 _entity_access: 'workflow.edit' | |
40 | |
41 entity.workflow.delete_transition_form: | |
42 path: '/admin/config/workflow/workflows/manage/{workflow}/transition/{workflow_transition}/delete' | |
43 defaults: | |
44 _form: '\Drupal\workflows\Form\WorkflowTransitionDeleteForm' | |
45 _title: 'Delete transition' | |
46 requirements: | |
47 _entity_access: 'workflow.edit' |