-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
95c923a
commit 520d00c
Showing
10 changed files
with
262 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
src/openforms/submissions/migrations/0003_auto_20231114_1000.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Generated by Django 3.2.23 on 2023-11-14 09:00 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("submissions", "0002_change_json_encoder"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="submission", | ||
name="cosign_confirmation_email_sent", | ||
field=models.BooleanField( | ||
default=False, | ||
help_text="Has the confirmation email been sent after the submission has successfully been cosigned?", | ||
verbose_name="cosign confirmation email sent", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="submission", | ||
name="cosign_request_email_sent", | ||
field=models.BooleanField( | ||
default=False, | ||
help_text="Has the email to request a co-sign been sent?", | ||
verbose_name="cosign request email sent", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="submission", | ||
name="payment_complete_confirmation_email_sent", | ||
field=models.BooleanField( | ||
default=False, | ||
help_text="Has the confirmation emails been sent after successful payment?", | ||
verbose_name="payment complete confirmation email sent", | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.