mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-25 20:18:38 +02:00
fixed withdrawn flow for now
This commit is contained in:
parent
a38f2a373b
commit
f1a96e37fe
2 changed files with 2 additions and 2 deletions
|
@ -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."""
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue