* dev: add admin and space base url * fix: formatting * dev: add app,space and admin base url to the api env * fix: updated app base urls redirection * dev: add change password endpoint * dev: add none as default for base url * dev: space password management endpoints * fix: docker env update * fix: docker and env settings * fix: docker changes * fix: next config update --------- Co-authored-by: pablohashescobar <nikhilschacko@gmail.com> Co-authored-by: guru_sainath <gurusainath007@gmail.com>
59 lines
1.3 KiB
Python
59 lines
1.3 KiB
Python
from .common import (
|
|
ChangePasswordEndpoint,
|
|
CSRFTokenEndpoint,
|
|
SetUserPasswordEndpoint,
|
|
)
|
|
|
|
from .app.check import EmailCheckSignInEndpoint, EmailCheckSignUpEndpoint
|
|
|
|
from .app.email import (
|
|
SignInAuthEndpoint,
|
|
SignUpAuthEndpoint,
|
|
)
|
|
from .app.github import (
|
|
GitHubCallbackEndpoint,
|
|
GitHubOauthInitiateEndpoint,
|
|
)
|
|
from .app.google import (
|
|
GoogleCallbackEndpoint,
|
|
GoogleOauthInitiateEndpoint,
|
|
)
|
|
from .app.magic import (
|
|
MagicGenerateEndpoint,
|
|
MagicSignInEndpoint,
|
|
MagicSignUpEndpoint,
|
|
)
|
|
|
|
from .app.signout import SignOutAuthEndpoint
|
|
|
|
|
|
from .space.email import SignInAuthSpaceEndpoint, SignUpAuthSpaceEndpoint
|
|
|
|
from .space.github import (
|
|
GitHubCallbackSpaceEndpoint,
|
|
GitHubOauthInitiateSpaceEndpoint,
|
|
)
|
|
|
|
from .space.google import (
|
|
GoogleCallbackSpaceEndpoint,
|
|
GoogleOauthInitiateSpaceEndpoint,
|
|
)
|
|
|
|
from .space.magic import (
|
|
MagicGenerateSpaceEndpoint,
|
|
MagicSignInSpaceEndpoint,
|
|
MagicSignUpSpaceEndpoint,
|
|
)
|
|
|
|
from .space.signout import SignOutAuthSpaceEndpoint
|
|
|
|
from .space.check import EmailCheckEndpoint
|
|
|
|
from .space.password_management import (
|
|
ForgotPasswordSpaceEndpoint,
|
|
ResetPasswordSpaceEndpoint,
|
|
)
|
|
from .app.password_management import (
|
|
ForgotPasswordEndpoint,
|
|
ResetPasswordEndpoint,
|
|
)
|