providers/samlv2: start implementing new SAML Provider

This commit is contained in:
Jens Langhammer
2020-05-07 01:20:08 +02:00
parent 2e9496bb74
commit b40bffdf38
13 changed files with 187 additions and 0 deletions

View File

@ -0,0 +1,10 @@
"""Single Logout Views"""
from django.views import View
class SAMLPostBindingView(View):
"""Handle SAML POST-type Requests"""
class SAMLRedirectBindingView(View):
"""Handle SAML Redirect-type Requests"""