feat(auth): Add OIDC support (#3517) (#6549)

spec/actions.js: Add OIDC metadata fetching

components/auth/oauth2: Add OIDC URL to the Authorization popup
This commit is contained in:
Ilya Lipnitskiy
2020-12-09 10:11:33 -08:00
committed by GitHub
parent 20a89877b2
commit 0807687f91
5 changed files with 186 additions and 6 deletions

View File

@@ -26,11 +26,13 @@ export default function authorize ( { auth, authActions, errActions, configs, au
break
case "clientCredentials":
case "client_credentials":
// OAS3
authActions.authorizeApplication(auth)
return
case "authorizationCode":
case "authorization_code":
// OAS3
query.push("response_type=code")
break