本文整理汇总了TypeScript中@alfresco/adf-core.AppConfigService.get方法的典型用法代码示例。如果您正苦于以下问题:TypeScript AppConfigService.get方法的具体用法?TypeScript AppConfigService.get怎么用?TypeScript AppConfigService.get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类@alfresco/adf-core.AppConfigService
的用法示例。
在下文中一共展示了AppConfigService.get方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: refreshData
refreshData(): void {
if (this.processInstance) {
const defaultProperties = this.initDefaultProperties();
const filteredProperties: string[] = this.appConfig.get('adf-process-instance-header.presets.properties');
this.properties = defaultProperties.filter((cardItem) => this.isValidSelection(filteredProperties, cardItem));
}
}
示例2: loadApps
loadApps() {
const apps = this.appConfig.get<any>('alfresco-deployed-apps', []);
apps.map((app) => {
app.theme = app.theme ? app.theme : 'theme-1';
app.icon = app.icon ? app.icon : 'favorite';
});
this.deployedApps = apps;
}
示例3: buildCreateTaskUrl
private buildCreateTaskUrl(appName: string): any {
return `${this.appConfigService.get('bpmHost')}/${appName}-rb/v1/tasks`;
}
示例4: getApplicationUrl
private getApplicationUrl(): string {
return `${this.appConfigService.get('bpmHost')}/alfresco-deployment-service/v1/applications`;
}
示例5: constructor
constructor(
private http: HttpClient,
private alfrescoApi: AlfrescoApiService,
private appConfig: AppConfigService) {
this.ecmHost = this.appConfig.get<string>('ecmHost');
}
示例6: getUserApi
private getUserApi() {
return `${this.appConfigService.get('identityHost')}/users`;
}
示例7: buildRolesUrl
private buildRolesUrl(groupId: string): any {
return `${this.appConfigService.get('identityHost')}/groups/${groupId}/role-mappings/realm/composite`;
}
示例8: getGroupsApi
private getGroupsApi() {
return `${this.appConfigService.get('identityHost')}/groups`;
}
示例9: getApplicationIdApi
private getApplicationIdApi() {
return `${this.appConfigService.get('identityHost')}/clients`;
}
示例10: groupClientRoleMappingApi
private groupClientRoleMappingApi(groupId: string, clientId: string): any {
return `${this.appConfigService.get('identityHost')}/groups/${groupId}/role-mappings/clients/${clientId}`;
}