-
Notifications
You must be signed in to change notification settings - Fork 19
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
Showing
19 changed files
with
2,010 additions
and
1,022 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -286,6 +286,7 @@ | |
BOTO_CONFIG = Config(retries={"mode": AWS_RETRY_MODE, "max_attempts": AWS_MAX_ATTEMPTS}) | ||
|
||
# email address to use for various automated correspondence | ||
# also used as a default to and bcc email | ||
DEFAULT_FROM_EMAIL = "[email protected] <[email protected]>" | ||
|
||
# connect to an (external) SMTP server for sending email | ||
|
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
29 changes: 29 additions & 0 deletions
29
src/registrar/migrations/0070_domainapplication_rejection_reason.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,29 @@ | ||
# Generated by Django 4.2.7 on 2024-02-26 22:12 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("registrar", "0069_alter_contact_email_alter_contact_first_name_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="domainapplication", | ||
name="rejection_reason", | ||
field=models.TextField( | ||
blank=True, | ||
choices=[ | ||
("purpose_not_met", "Purpose requirements not met"), | ||
("requestor_not_eligible", "Requestor not eligible to make request"), | ||
("org_has_domain", "Org already has a .gov domain"), | ||
("contacts_not_verified", "Org contacts couldn't be verified"), | ||
("org_not_eligible", "Org not eligible for a .gov domain"), | ||
("naming_not_met", "Naming requirements not met"), | ||
("other", "Other/Unspecified"), | ||
], | ||
null=True, | ||
), | ||
), | ||
] |
Oops, something went wrong.