26 lines
777 B
Python
26 lines
777 B
Python
|
# Generated by Django 3.0.3 on 2020-02-17 20:31
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import passbook.providers.saml.utils.time
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
("passbook_providers_saml", "0005_remove_samlpropertymapping_values"),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name="samlprovider",
|
||
|
name="assertion_valid_not_before",
|
||
|
field=models.TextField(
|
||
|
default="minutes=-5",
|
||
|
help_text="Assertion valid not before current time + this value (Format: hours=-1;minutes=-2;seconds=-3).",
|
||
|
validators=[
|
||
|
passbook.providers.saml.utils.time.timedelta_string_validator
|
||
|
],
|
||
|
),
|
||
|
),
|
||
|
]
|