an auth view to validate (username, password, service) by remote service

This commit is contained in:
Valentin Samir
2015-06-03 18:15:37 +02:00
parent 690c2c3b29
commit cb84936b6c
3 changed files with 47 additions and 3 deletions

View File

@ -27,5 +27,6 @@ urlpatterns = patterns(
url('^p3/serviceValidate$', views.ValidateService.as_view(allow_proxy_ticket=False), name='p3_serviceValidate'),
url('^p3/proxyValidate$', views.ValidateService.as_view(allow_proxy_ticket=True), name='p3_proxyValidate'),
url('^samlValidate$', views.SamlValidate.as_view(), name='samlValidate'),
url('^auth$', views.Auth.as_view(), name='auth'),
)