forked from CenterForOpenScience/osf.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add UNVERIFIED Domain classification
Squashed commit of the following: commit 5615a3a Author: John Tordoff <> Date: Tue Dec 12 16:42:54 2023 -0500 update is_triaged behavior commit a9a49f2 Author: John Tordoff <> Date: Tue Dec 12 15:53:49 2023 -0500 change test case to account for new exception handing for domain sniffer commit 096e1ab Author: John Tordoff <> Date: Tue Dec 12 14:03:25 2023 -0500 redo exception handling and add migration file commit 89b37f3 Author: John Tordoff <> Date: Mon Dec 11 12:13:31 2023 -0500 make timeouts classify notable domains as unverified
- Loading branch information
Showing
4 changed files
with
52 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Generated by Django 3.2.17 on 2023-12-12 19:02 | ||
|
||
from django.db import migrations, models | ||
import osf.models.notable_domain | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('osf', '0016_auto_20230828_1810'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='notabledomain', | ||
name='note', | ||
field=models.IntegerField(choices=[(0, 'EXCLUDE_FROM_ACCOUNT_CREATION_AND_CONTENT'), (1, 'ASSUME_HAM_UNTIL_REPORTED'), (2, 'UNKNOWN'), (3, 'IGNORED'), (4, 'UNVERIFIED')], default=osf.models.notable_domain.NotableDomain.Note['UNKNOWN']), | ||
), | ||
] |
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