From fbf707854260ffec9b7da2da1ed3ad79534da549 Mon Sep 17 00:00:00 2001 From: vishwas1 Date: Tue, 27 Aug 2024 18:42:12 +0530 Subject: [PATCH] added access list for widget --- src/app-auth/services/app-auth.service.ts | 1 - src/supported-service/services/iServiceList.ts | 3 +++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app-auth/services/app-auth.service.ts b/src/app-auth/services/app-auth.service.ts index 7cc9241..8a1e3ba 100644 --- a/src/app-auth/services/app-auth.service.ts +++ b/src/app-auth/services/app-auth.service.ts @@ -224,7 +224,6 @@ export class AppAuthService { hasDomainVerified: createAppDto.hasDomainVerified, }); Logger.log('App created successfully', 'app-auth-service'); - Logger.log(JSON.stringify(appData)); return this.getAppResponse(appData, apiSecretKey); } diff --git a/src/supported-service/services/iServiceList.ts b/src/supported-service/services/iServiceList.ts index 3a37ce0..4685b9a 100644 --- a/src/supported-service/services/iServiceList.ts +++ b/src/supported-service/services/iServiceList.ts @@ -48,6 +48,9 @@ export namespace SERVICES { WRITE_SESSION = 'WRITE_SESSION', WRITE_PASSIVE_LIVELINESS = 'WRITE_PASSIVE_LIVELINESS', WRITE_DOC_OCR = 'WRITE_DOC_OCR', + READ_WIDGET_CONFIG = 'READ_WIDGET_CONFIG', + WRITE_WIDGET_CONFIG = 'WRITE_WIDGET_CONFIG', + UPDATE_WIDGET_CONFIG = 'UPDATE_WIDGET_CONFIG', } } }