-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(auth): remove OtfAuthConfig to simplify authentication confi…
…guration Remove the OtfAuthConfig class and its usage across the codebase to simplify the authentication configuration process. This change reduces complexity by eliminating unnecessary configuration options and streamlining the caching mechanism using a unified CacheableData class. This refactor aims to improve code maintainability and readability while maintaining the same functionality.
- Loading branch information
1 parent
b31a008
commit fdf1383
Showing
7 changed files
with
91 additions
and
167 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
from .auth import OTF_AUTH_TYPE, OtfAuth | ||
from .config import OtfAuthConfig | ||
from .user import OtfUser | ||
from .utils import HttpxCognitoAuth | ||
|
||
__all__ = ["OTF_AUTH_TYPE", "HttpxCognitoAuth", "OtfAuth", "OtfAuthConfig", "OtfUser"] | ||
__all__ = ["OTF_AUTH_TYPE", "HttpxCognitoAuth", "OtfAuth", "OtfUser"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.