This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
mandaye-meyzieu/rp_meyzieu/auth/example.py

19 lines
375 B
Python

"""
Here you can overload Mandaye default authentification
method like SAML2Auth or AuthForm
"""
from mandaye.auth.authform import AuthForm
from mandaye.auth.saml2 import SAML2Auth
class MyAuthSAML(SAML2Auth):
""" Overload Mandaye SAML2Auth authentification
"""
pass
class MyAuth(AuthForm):
""" Overload Mandaye AuthForm authentification
"""
pass