fixed withdrawn flow for now

This commit is contained in:
Jon Roberts 2023-04-13 14:32:23 -06:00
parent a38f2a373b
commit f1a96e37fe
No known key found for this signature in database
GPG key ID: EED093582198B041
2 changed files with 2 additions and 2 deletions

View file

@ -485,7 +485,7 @@ class DomainApplication(TimeStampedModel):
except EmailSendingError:
logger.warning("Failed to send confirmation email", exc_info=True)
@transition(field="status", source=STARTED, target=SUBMITTED)
@transition(field="status", source=[STARTED, WITHDRAWN], target=SUBMITTED)
def submit(self):
"""Submit an application that is started."""