-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement restapi services to handle authentication flow (#39)
* Implement restapi services to handle authentication flow * Increase timeout during keycloak service fixture initialization * Improve utils.url_cleanup * Tests for utils.boolean_string_ser and boolean_string_deser * Add tests for utils.process_came_from * Tests for authorization flow helpers in utils * Tests for logout endpoint * Add Makefile targets to manage Keycloak * Handle issue with missing scope * Update DEVELOP.md * Update documentation * Additional updates to the README file * Fix typo in README.md
- Loading branch information
Showing
38 changed files
with
1,302 additions
and
427 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 was deleted.
Oops, something went wrong.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 @@ | ||
Implement restapi services to handle authentication flow [@ericof] |
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,6 +7,7 @@ | |
|
||
|
||
PACKAGE_NAME = "pas.plugins.oidc" | ||
PLUGIN_ID = "oidc" | ||
|
||
_ = MessageFactory(PACKAGE_NAME) | ||
|
||
|
Oops, something went wrong.