23 lines
606 B
Python
23 lines
606 B
Python
# Generated by Django 5.0.13 on 2025-03-31 13:50
|
|
|
|
import authentik.lib.models
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("authentik_providers_saml", "0017_samlprovider_authn_context_class_ref_mapping"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="samlprovider",
|
|
name="acs_url",
|
|
field=models.TextField(
|
|
validators=[authentik.lib.models.DomainlessURLValidator(schemes=("http", "https"))],
|
|
verbose_name="ACS URL",
|
|
),
|
|
),
|
|
]
|