31 lines
832 B
Python
31 lines
832 B
Python
|
# Generated by Django 3.0.6 on 2020-05-23 23:29
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
("passbook_sources_saml", "0001_initial"),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name="samlsource",
|
||
|
name="binding_type",
|
||
|
field=models.CharField(
|
||
|
choices=[("REDIRECT", "Redirect"), ("POST", "Post")],
|
||
|
default="REDIRECT",
|
||
|
max_length=100,
|
||
|
),
|
||
|
),
|
||
|
migrations.AlterField(
|
||
|
model_name="samlsource",
|
||
|
name="idp_url",
|
||
|
field=models.URLField(
|
||
|
help_text="URL that the initial SAML Request is sent to. Also known as a Binding.",
|
||
|
verbose_name="IDP URL",
|
||
|
),
|
||
|
),
|
||
|
]
|