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.
2020-07-08 12:18:08 +00:00
|
|
|
# Generated by Django 3.0.8 on 2020-07-08 12:07
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
2020-07-08 12:27:32 +00:00
|
|
|
("passbook_sources_saml", "0003_auto_20200624_1957"),
|
2020-07-08 12:18:08 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterField(
|
2020-07-08 12:27:32 +00:00
|
|
|
model_name="samlsource",
|
|
|
|
name="binding_type",
|
|
|
|
field=models.CharField(
|
|
|
|
choices=[
|
|
|
|
("REDIRECT", "Redirect Binding"),
|
|
|
|
("POST", "POST Binding"),
|
|
|
|
("POST_AUTO", "POST Binding with auto-confirmation"),
|
|
|
|
],
|
|
|
|
default="REDIRECT",
|
|
|
|
max_length=100,
|
|
|
|
),
|
2020-07-08 12:18:08 +00:00
|
|
|
),
|
|
|
|
]
|