mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 21:06:06 +00:00
save
This commit is contained in:
@@ -121,18 +121,17 @@ export class ProcessesService {
|
||||
});
|
||||
}
|
||||
|
||||
UpdateTaskStatus(folderId: any){
|
||||
UpdateTaskStatus(FolderId:string): Observable<any>{
|
||||
const geturl = environment.apiURL + 'Tasks/UpdateTaskStatus';
|
||||
let params = new HttpParams();
|
||||
params = params.set("FolderId", folderId);
|
||||
|
||||
params = params.set("FolderId", FolderId);
|
||||
|
||||
let options = {
|
||||
headers: this.headers,
|
||||
params: params,
|
||||
params: params
|
||||
};
|
||||
return this.http.post<any>(`${geturl}`, options).toPromise().then(res =>{
|
||||
console.log(res);
|
||||
});
|
||||
|
||||
return this.http.post<any>(`${geturl}`,'', options);
|
||||
}
|
||||
|
||||
postDespatcho(body:any){
|
||||
|
||||
Reference in New Issue
Block a user