Skip to content

Commit

Permalink
Add session management config
Browse files Browse the repository at this point in the history
  • Loading branch information
dasuni-30 committed May 3, 2024
1 parent a7615fb commit aebbbff
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ interface Config {
petManagementServiceURL: string;
billingServerURL: string;
salesforceServerURL: string;
enableOIDCSessionManagement: boolean;
}

declare global {
Expand All @@ -43,7 +44,8 @@ const authConfig = {
petManagementServiceURL: window.config.petManagementServiceURL,
billingServerURL: window.config.billingServerURL,
salesforceServerURL: window.config.salesforceServerURL,
scope: ["openid", "profile", "email", "acr"],
enableOIDCSessionManagement: true,
scope: ["openid", "profile", "email", "acr"]
};

export function getConfig() {
Expand Down

0 comments on commit aebbbff

Please sign in to comment.