Merge branch 'staging' into state-machine-error-handling

This commit is contained in:
tomdds 2020-02-13 14:23:50 -05:00 committed by GitHub
commit ccc8fbb233
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -77,7 +77,7 @@ class TaskOrder(Base, mixins.TimestampsMixin):
@property
def is_draft(self):
return self.status == Status.DRAFT
return self.status == Status.DRAFT or self.status == Status.UNSIGNED
@property
def is_active(self):