-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into HIVE-1800-graphql-authorization
- Loading branch information
Showing
4 changed files
with
22 additions
and
14 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,10 +1,10 @@ | ||
from bhjwt.main import create_asserter | ||
from bhjwt.main import create_asserter, PublicKeys | ||
from bhjwt.assertions import AssertJwt | ||
from bhjwt.exceptions import FailedToDecodeJwt, AuthorizationError | ||
from bhjwt.config import AuthLibConfiguration | ||
from bhjwt.providers import ( | ||
BrightHiveProvider, | ||
OAuth2ProviderFactory, | ||
OAuth2ProviderError, | ||
) | ||
from bhjwt.exceptions import AuthorizationError | ||
from bhjwt.decorators.token_required_decorator import token_required |
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
|
||
setup( | ||
name="bhjwt", | ||
version="0.0.4-alpha.5", | ||
version="0.0.4-alpha.7", | ||
author="Brighthive", | ||
# author_email="[email protected]", | ||
# description="Brighthive Library for JWT", | ||
|