This commit is contained in:
tiago.kayaya
2021-04-26 16:44:49 +01:00
parent 759e555392
commit 703de3a14d
10 changed files with 97 additions and 30 deletions
+12 -5
View File
@@ -49,6 +49,18 @@ export class ProcessesService {
};
return this.http.get<any>(`${geturl}`, options);
}
SetTaskToPending(serialNumber:string): Observable<any>{
const geturl = environment.apiURL + 'Tasks/SetTaskPending';
let params = new HttpParams();
params = params.set("serialNumber", serialNumber);
let options = {
headers: this.headers,
params: params
};
return this.http.post<any>(`${geturl}`,'', options);
}
GetTaskParticipants(folderId:string): Observable<any>{
const geturl = environment.apiURL + 'Processes/GetUsersInDispash';
@@ -210,9 +222,4 @@ export class ProcessesService {
return this.http.get<any>(`${geturl}`, options);
}
}