Skip to content

Commit

Permalink
OIDC auth: add provider title to internal_aut_data
Browse files Browse the repository at this point in the history
  • Loading branch information
soxofaan committed Oct 8, 2021
1 parent 9a0fc47 commit 50deb55
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion openeo_driver/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.14.2a1'
__version__ = '0.14.3a1'
4 changes: 3 additions & 1 deletion openeo_driver/users/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,9 @@ def resolve_oidc_access_token(self, oidc_provider: OidcProvider, access_token: s
info={"oidc_userinfo": userinfo},
internal_auth_data={
"authentication_method": "OIDC",
"provider_id": oidc_provider.id,
"provider_id": oidc_provider.id, # TODO: deprecated
"oidc_provider_id": oidc_provider.id,
"oidc_provider_title": oidc_provider.title,
"oidc_issuer": oidc_provider.issuer,
"userinfo_url": userinfo_url,
"access_token": access_token,
Expand Down

0 comments on commit 50deb55

Please sign in to comment.