-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: jwt_backends - create backend mechanism and add authlib support (…
…#41) Co-authored-by: Konstantin Chernyshev <38007247+k4black@users.noreply.github.com> Co-authored-by: Konstantin Chernyshev <k4black@ya.ru>
- Loading branch information
1 parent
19c6038
commit 0ea6c04
Showing
18 changed files
with
699 additions
and
612 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
from .jwt import * # noqa: F401, F403 | ||
from .jwt_backends import * # noqa: F401, F403 |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
from . import abstract_backend, authlib_backend, python_jose_backend # noqa: F401 | ||
from .abstract_backend import AbstractJWTBackend # noqa: F401 | ||
from .authlib_backend import AuthlibJWTBackend # noqa: F401 | ||
from .python_jose_backend import PythonJoseJWTBackend # noqa: F401 |
Oops, something went wrong.