providers/proxy: start implementing basic_auth_enabled

see #244
This commit is contained in:
Jens Langhammer
2020-09-30 11:15:17 +02:00
parent 02f5f12089
commit 9d5dd896f3
4 changed files with 66 additions and 2 deletions

View File

@ -57,6 +57,9 @@ class ProxyProviderSerializer(ModelSerializer):
"internal_host_ssl_validation",
"certificate",
"skip_path_regex",
"basic_auth_enabled",
"basic_auth_password_attribute",
"basic_auth_user_attribute",
]
@ -97,6 +100,9 @@ class ProxyOutpostConfigSerializer(ModelSerializer):
"cookie_secret",
"certificate",
"skip_path_regex",
"basic_auth_enabled",
"basic_auth_password_attribute",
"basic_auth_user_attribute",
]
@swagger_serializer_method(serializer_or_field=OpenIDConnectConfigurationSerializer)