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-09-23 10:20:09 +00:00
|
|
|
# Generated by Django 3.1.1 on 2020-09-23 10:17
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
2020-09-23 10:33:33 +00:00
|
|
|
("passbook_providers_proxy", "0006_proxyprovider_skip_path_regex"),
|
2020-09-23 10:20:09 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AddField(
|
2020-09-23 10:33:33 +00:00
|
|
|
model_name="proxyprovider",
|
|
|
|
name="internal_host_ssl_validation",
|
|
|
|
field=models.BooleanField(
|
|
|
|
default=True, help_text="Validate SSL Certificates of upstream servers"
|
|
|
|
),
|
2020-09-23 10:20:09 +00:00
|
|
|
),
|
|
|
|
migrations.AlterField(
|
2020-09-23 10:33:33 +00:00
|
|
|
model_name="proxyprovider",
|
|
|
|
name="skip_path_regex",
|
|
|
|
field=models.TextField(
|
|
|
|
blank=True,
|
|
|
|
default="",
|
|
|
|
help_text="Regular expressions for which authentication is not required. Each new line is interpreted as a new Regular Expression.",
|
|
|
|
),
|
2020-09-23 10:20:09 +00:00
|
|
|
),
|
|
|
|
]
|