[AAE-0000] - fixed run for process-service-cloud (#11855)

* [AAE-0000] - fixed run for process-service-cloud

* [AAE-0000] - Stabilising process cloud tests
This commit is contained in:
Vito Albano
2026-05-20 14:19:25 +05:30
committed by Anamika Dey
parent 539f5c3af1
commit c41337ec60
11 changed files with 62 additions and 31 deletions
@@ -252,7 +252,7 @@ export class AppConfigService {
* @returns auth config model
*/
get oauth2(): OauthConfigModel {
const config = this.get(AppConfigValues.OAUTHCONFIG, {});
const config = this.get(AppConfigValues.OAUTHCONFIG, {}) ?? {};
const implicitFlow = config['implicitFlow'] === true || config['implicitFlow'] === 'true';
const silentLogin = config['silentLogin'] === true || config['silentLogin'] === 'true';
const codeFlow = config['codeFlow'] === true || config['codeFlow'] === 'true';