This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2020-02-17 20:32:23 +00:00
|
|
|
# Generated by Django 3.0.3 on 2020-02-17 20:31
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
2020-02-18 09:13:53 +00:00
|
|
|
|
2020-02-17 20:32:23 +00:00
|
|
|
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
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
]
|