Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changeset/fluffy-parents-burn.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@wso2is/admin.extensions.v1": patch
"@wso2is/console": patch
---

Add Token Exchange grant type to agent application template
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@
"grantTypes": [
"authorization_code",
"refresh_token",
"urn:openid:params:grant-type:ciba"
"urn:openid:params:grant-type:ciba",
"urn:ietf:params:oauth:grant-type:token-exchange"
],
"pkce": {
"mandatory": true,
Expand Down
3 changes: 2 additions & 1 deletion features/admin.extensions.v1/configs/application.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,8 @@ export const applicationConfig: ApplicationConfig = {
[ "agent-application" ]: [
ApplicationManagementConstants.AUTHORIZATION_CODE_GRANT,
ApplicationManagementConstants.REFRESH_TOKEN_GRANT,
ApplicationManagementConstants.CIBA_GRANT
ApplicationManagementConstants.CIBA_GRANT,
ApplicationManagementConstants.OAUTH2_TOKEN_EXCHANGE
],
[ "angular-application" ]: [
ApplicationManagementConstants.AUTHORIZATION_CODE_GRANT,
Expand Down
Loading