This commit is contained in:
tiago.kayaya
2021-05-06 13:37:22 +01:00
parent 582efcac2d
commit bdef27b804
11 changed files with 54 additions and 54 deletions
+8
View File
@@ -139,6 +139,14 @@ export class ProcessesService {
};
return this.http.post<any>(`${geturl}`, body, options).toPromise()
}
CompleteTask(body:any){
const geturl = environment.apiURL + 'Tasks/CompleteTask';
let options = {
headers: this.headers,
};
return this.http.post<any>(`${geturl}`, body, options).toPromise()
}
UpdateTaskStatus(FolderId:string): Observable<any>{
const geturl = environment.apiURL + 'Tasks/UpdateTaskStatus';