-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add OneTimeLink support to retrieve authentication codes for voters (#…
…247) * working in adding OneTimeLink to retrieve auth codes * setting fixed-code in unit test during election creation * WIP
- Loading branch information
Showing
20 changed files
with
999 additions
and
54 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Generated by Edulix on 2022-10-19 10:00 | ||
|
||
from django.db import models, migrations | ||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('api', '0048_authevent_allowed_statuses'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='authevent', | ||
name='support_otl_enabled', | ||
field=models.BooleanField(default=False), | ||
preserve_default=False, | ||
), | ||
migrations.AddField( | ||
model_name='authevent', | ||
name='inside_authenticate_otl_period', | ||
field=models.BooleanField(default=False), | ||
preserve_default=False, | ||
), | ||
] |
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.