From a66226992e7ebd5d9eb81873175f76a0547c3a90 Mon Sep 17 00:00:00 2001 From: Thomas Hunter Date: Thu, 13 Oct 2022 14:14:48 +0100 Subject: [PATCH] [ACS-3721] Change folder rules endpoints to private (#2710) --- .../aca-folder-rules/src/lib/services/folder-rules.service.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/projects/aca-folder-rules/src/lib/services/folder-rules.service.ts b/projects/aca-folder-rules/src/lib/services/folder-rules.service.ts index 7c2f368e7..bf14941c0 100644 --- a/projects/aca-folder-rules/src/lib/services/folder-rules.service.ts +++ b/projects/aca-folder-rules/src/lib/services/folder-rules.service.ts @@ -182,7 +182,8 @@ export class FolderRulesService { } private apiCall(path: string, httpMethod: string, params?: any[]): Promise { - return this.apiService.getInstance().contentClient.callApi(path, httpMethod, ...params); + // APIs used by this service are still private and not yet available for public use + return this.apiService.getInstance().contentPrivateClient.callApi(path, httpMethod, ...params); } private formatRules(res): Rule[] {