mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
Fixe merge
This commit is contained in:
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user