providers/proxy: add option to skip authentication for paths matching regular expressions
This commit is contained in:
@ -0,0 +1,18 @@
|
||||
# Generated by Django 3.1.1 on 2020-09-19 09:14
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('passbook_providers_proxy', '0005_auto_20200914_1536'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='proxyprovider',
|
||||
name='skip_path_regex',
|
||||
field=models.TextField(blank=True, default='', help_text='Regular expression for which authentication is not required. Each new line is interpreted as a new Regular Expression.'),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user