providers/proxy: add option to skip authentication for paths matching regular expressions

This commit is contained in:
Jens Langhammer
2020-09-19 11:31:48 +02:00
parent a69c494feb
commit 5689f25c39
5 changed files with 40 additions and 0 deletions

View File

@ -55,6 +55,7 @@ class ProxyProviderSerializer(ModelSerializer):
"internal_host",
"external_host",
"certificate",
"skip_path_regex",
]
@ -93,6 +94,7 @@ class ProxyOutpostConfigSerializer(ModelSerializer):
"oidc_configuration",
"cookie_secret",
"certificate",
"skip_path_regex",
]
@swagger_serializer_method(serializer_or_field=OpenIDConnectConfigurationSerializer)