exclude upload folder test as far we don't find a solution in chrome 73 (#4473)

* exclude upload folder test as far we don't find a solution in chrome 73

* exclude folder drag and drop test chrome 73

* fix test search

* Update .travis.yml

* xit C279918 C279916

* fix process-service cloud application list
This commit is contained in:
Eugenio Romano
2019-03-23 20:32:03 +00:00
committed by GitHub
parent 4a32fb920f
commit 6059690e79
8 changed files with 83 additions and 48 deletions

View File

@@ -29,7 +29,8 @@ export class AppsProcessCloudService {
constructor(
private apiService: AlfrescoApiService,
private logService: LogService,
private appConfigService: AppConfigService) {}
private appConfigService: AppConfigService) {
}
/**
* Gets a list of deployed apps for this user by status.
@@ -49,12 +50,12 @@ export class AppsProcessCloudService {
return from(api.callCustomApi(path, 'GET', pathParams, queryParams, headerParams, formParams, bodyParam,
contentTypes, accepts))
.pipe(
map((applications: ApplicationInstanceModel[]) => {
return applications.map((application) => {
return new ApplicationInstanceModel(application);
map((applications: any) => {
return applications.list.entries.map((application) => {
return new ApplicationInstanceModel(application.entry);
});
}),
catchError((err) => this.handleError(err))
}),
catchError((err) => this.handleError(err))
);
}