Skip to content

Commit

Permalink
Adding scopes for ProfileSwitching
Browse files Browse the repository at this point in the history
  • Loading branch information
Snehal Sonawane committed Jan 6, 2025
1 parent d9a8218 commit 71266a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/utils/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -991,7 +991,7 @@ export async function loadIms() {
return;
}
const [unavMeta, ahomeMeta] = [getMetadata('universal-nav')?.trim(), getMetadata('adobe-home-redirect')];
const defaultScope = `AdobeID,openid,gnav${unavMeta && unavMeta !== 'off' ? ',pps.read,firefly_api,additional_info.roles,read_organizations' : ''}`;
const defaultScope = `AdobeID,openid,gnav${unavMeta && unavMeta !== 'off' ? ',pps.read,firefly_api,additional_info.roles,read_organizations,account_cluster.read' : ''}`;
const timeout = setTimeout(() => reject(new Error('IMS timeout')), imsTimeout || 5000);
window.adobeid = {
client_id: imsClientId,
Expand Down

0 comments on commit 71266a0

Please sign in to comment.