add ability to have non-expiring nonces, clean up expired nonces

This commit is contained in:
Jens Langhammer
2019-04-04 21:49:10 +02:00
parent a21012bf0c
commit 660972e303
5 changed files with 33 additions and 2 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 2.1.7 on 2019-04-04 19:42
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('passbook_core', '0021_policy_timeout'),
]
operations = [
migrations.AddField(
model_name='nonce',
name='expiring',
field=models.BooleanField(default=True),
),
]