Add secret as sensitive variables/post parameter for /auth

This commit is contained in:
Valentin Samir 2016-07-31 12:28:10 +02:00
parent 4721eb4f81
commit f0922e0300
1 changed files with 2 additions and 2 deletions

View File

@ -53,8 +53,8 @@ urlpatterns = [
url('^samlValidate$', views.SamlValidate.as_view(), name='samlValidate'),
url(
'^auth$',
sensitive_variables('password')(
sensitive_post_parameters('password')(
sensitive_variables('password', 'secret')(
sensitive_post_parameters('password', 'secret')(
views.Auth.as_view()
)
),