本文整理匯總了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}`;
}