Skip to content

Commit

Permalink
Refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
patrykkotlowski-dsstream committed Sep 20, 2024
1 parent 7be90b4 commit 1c760fe
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions backend/chainlit/oauth_providers.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@
stacklevel=2,
)

from chainlit.oauth.auth0_oauth_provider import Auth0OAuthProvider
from chainlit.oauth.aws_cognito_oauth_provider import AWSCognitoOAuthProvider
from chainlit.oauth.azure_ad_hubrid_oauth_provider import AzureADHybridOAuthProvider
from chainlit.oauth.azure_ad_oauth_provider import AzureADOAuthProvider
from chainlit.oauth.descope_oauth_provider import DescopeOAuthProvider
from chainlit.oauth.github import GithubOAuthProvider
from chainlit.oauth.gitlab_oauth_provider import GitlabOAuthProvider
from chainlit.oauth.google import GoogleOAuthProvider
from chainlit.oauth.oauth_provider import OAuthProvider
from chainlit.oauth.okta_oauth_provider import OktaOAuthProvider
from chainlit.oauth.providers import (
get_configured_oauth_providers,
get_oauth_provider,
Expand All @@ -17,4 +27,14 @@
"providers",
"get_oauth_provider",
"get_configured_oauth_providers",
"OAuthProvider",
"GithubOAuthProvider",
"GoogleOAuthProvider",
"AzureADOAuthProvider",
"AzureADHybridOAuthProvider",
"OktaOAuthProvider",
"Auth0OAuthProvider",
"DescopeOAuthProvider",
"AWSCognitoOAuthProvider",
"GitlabOAuthProvider",
]

0 comments on commit 1c760fe

Please sign in to comment.