mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
added possibility of usage _any_ so from any status will be changed to one specific
This commit is contained in:
parent
af24300059
commit
90187e94b3
1 changed files with 1 additions and 1 deletions
|
|
@ -312,7 +312,7 @@ class AppAction(BaseHandler):
|
|||
actual_status = entity['status']['name'].lower()
|
||||
next_status_name = None
|
||||
for key, value in statuses.items():
|
||||
if actual_status in value:
|
||||
if actual_status in value or '_any_' in value:
|
||||
next_status_name = key
|
||||
break
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue