Files
authentik/authentik/providers/saml/migrations/0010_auto_20201230_2112.py
2021-12-17 11:00:20 +00:00

23 lines
610 B
Python

# Generated by Django 3.1.4 on 2020-12-30 21:12
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("authentik_providers_saml", "0009_auto_20201112_2016"),
]
operations = [
migrations.AlterField(
model_name="samlprovider",
name="audience",
field=models.TextField(
blank=True,
default="",
help_text="Value of the audience restriction field of the assertion. When left empty, no audience restriction will be added.",
),
),
]