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/passbook/sources/saml/migrations/0001_initial.py

42 lines
1.3 KiB
Python
Raw Normal View History

2019-11-07 16:02:56 +00:00
# Generated by Django 2.2.6 on 2019-11-07 13:54
import django.db.models.deletion
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
2019-12-31 11:51:16 +00:00
("passbook_core", "0005_merge_20191025_2022"),
2019-11-07 16:02:56 +00:00
]
operations = [
migrations.CreateModel(
2019-12-31 11:51:16 +00:00
name="SAMLSource",
2019-11-07 16:02:56 +00:00
fields=[
2019-12-31 11:51:16 +00:00
(
"source_ptr",
models.OneToOneField(
auto_created=True,
on_delete=django.db.models.deletion.CASCADE,
parent_link=True,
primary_key=True,
serialize=False,
to="passbook_core.Source",
),
),
("acs_url", models.URLField()),
("slo_url", models.URLField()),
("entity_id", models.TextField(blank=True, default=None)),
("idp_url", models.URLField()),
("auto_logout", models.BooleanField(default=False)),
("signing_cert", models.TextField()),
("signing_key", models.TextField()),
2019-11-07 16:02:56 +00:00
],
2019-12-31 11:51:16 +00:00
options={"abstract": False,},
bases=("passbook_core.source",),
2019-11-07 16:02:56 +00:00
),
]