allow re-open (retract to draft state) of active task
This commit is contained in:
parent
40d368602d
commit
bd85bfbcdc
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ def taskStates():
|
||||||
return StatesDefinition('task_states',
|
return StatesDefinition('task_states',
|
||||||
State('draft', 'draft', ('release', 'cancel',),
|
State('draft', 'draft', ('release', 'cancel',),
|
||||||
color='blue'),
|
color='blue'),
|
||||||
State('active', 'active', ('finish', 'cancel',),
|
State('active', 'active', ('finish', 'reopen', 'cancel',),
|
||||||
color='yellow'),
|
color='yellow'),
|
||||||
State('finished', 'finished', ('reopen', 'archive',),
|
State('finished', 'finished', ('reopen', 'archive',),
|
||||||
color='green'),
|
color='green'),
|
||||||
|
|
Loading…
Add table
Reference in a new issue