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.
authentik/authentik/sources/ldap/migrations/0005_auto_20200913_1947.py
Jens Langhammer 77ed25ae34 root: reformat to 100 line width
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
2021-08-03 17:45:16 +02:00

24 lines
582 B
Python

# Generated by Django 3.1.1 on 2020-09-13 19:47
from django.db import migrations, models
import authentik.lib.models
class Migration(migrations.Migration):
dependencies = [
("authentik_sources_ldap", "0004_auto_20200524_1146"),
]
operations = [
migrations.AlterField(
model_name="ldapsource",
name="server_uri",
field=models.TextField(
validators=[authentik.lib.models.DomainlessURLValidator(schemes=["ldap", "ldaps"])],
verbose_name="Server URI",
),
),
]