-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding smart on fhir configuration endpoint (#1270)
* adding smart on fhir configuration endpoint * fixing pylint errors * more fixing of pylint errors * removing unnecessary fields for smart configuration response * fixing url path for smart config v2 * adding authorize-post to capabilities * removing v1 response and changing all OIDC config responses to v2 * fixing smart config url pattern * fixing linter errors * updating revocation endpoint to v2 and updating swagger openid config to match between versions * removing deprecated v2 param * updating tests to handle v2 cases * removing deprecated v2 param
- Loading branch information
Showing
8 changed files
with
64 additions
and
16 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
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,3 +1,3 @@ | ||
from .openid import openid_configuration, base_issuer, build_endpoint_info # NOQA | ||
from .openid import openid_configuration, smart_configuration, base_issuer, build_endpoint_info # NOQA | ||
from .application import ApplicationListView, ApplicationLabelView # NOQA | ||
from .public_applications import ApplicationListView as PublicApplicationListView # NOQA |
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