mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-12 17:04:46 +00:00
[ACS-3721] Change folder rules endpoints to private (#2710)
This commit is contained in:
parent
fbc33dd137
commit
a66226992e
@ -182,7 +182,8 @@ export class FolderRulesService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private apiCall(path: string, httpMethod: string, params?: any[]): Promise<any> {
|
private apiCall(path: string, httpMethod: string, params?: any[]): Promise<any> {
|
||||||
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[] {
|
private formatRules(res): Rule[] {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user