[ACA-3706] implement startedBy process filter property (#6077)

* [ACA-3706] implement startedBy filter property

* fix lint

* [ACA-3706] implement startedBy filter

* replace initiator with people cloud component

* small changes

* fix user selection mode

* revert unnecesary change

* fix e2e

* fix process filter e2e tests

* fix more e2e

Co-authored-by: Silviu Popa <p3701014@L3700101120.ness.com>
This commit is contained in:
Silviu Popa
2020-10-23 12:33:03 +03:00
committed by GitHub
parent a3771a70bd
commit 1f163d58ec
17 changed files with 86 additions and 32 deletions

View File

@@ -18,6 +18,7 @@
import { Injectable } from '@angular/core';
import { AlfrescoApiService } from './alfresco-api.service';
import { Observable, from } from 'rxjs';
import { Oauth2Auth } from '@alfresco/js-api';
export const JSON_TYPE = ['application/json'];
@@ -33,7 +34,7 @@ export interface OAuth2RequestParams {
export class OAuth2Service {
constructor(private alfrescoApiService: AlfrescoApiService) {}
get apiClient() {
get apiClient(): Oauth2Auth {
return this.alfrescoApiService.getInstance().oauth2Auth;
}