mirror of
https://github.com/simple-login/app.git
synced 2024-11-10 21:27:10 +01:00
42 lines
588 B
Python
42 lines
588 B
Python
from .views import (
|
|
login,
|
|
logout,
|
|
register,
|
|
activate,
|
|
resend_activation,
|
|
reset_password,
|
|
forgot_password,
|
|
github,
|
|
google,
|
|
facebook,
|
|
proton,
|
|
change_email,
|
|
mfa,
|
|
fido,
|
|
social,
|
|
recovery,
|
|
api_to_cookie,
|
|
oidc,
|
|
)
|
|
|
|
__all__ = [
|
|
"login",
|
|
"logout",
|
|
"register",
|
|
"activate",
|
|
"resend_activation",
|
|
"reset_password",
|
|
"forgot_password",
|
|
"github",
|
|
"google",
|
|
"facebook",
|
|
"proton",
|
|
"change_email",
|
|
"mfa",
|
|
"fido",
|
|
"social",
|
|
"recovery",
|
|
"api_to_cookie",
|
|
"oidc",
|
|
]
|