Edit task detail page and add integration methods

This commit is contained in:
Tiago Kayaya
2020-11-06 14:39:09 +01:00
parent bfa4f2ec91
commit d3dd83c8a8
13 changed files with 196 additions and 20 deletions
-2
View File
@@ -41,8 +41,6 @@ export class AttachmentsService {
params = params.set("Source", source.toString());
/* params = params.set("SourceId", sourceid); */
let options = {
headers: this.headers,
params: params
+10
View File
@@ -84,6 +84,16 @@ export class ProcessesService {
return this.http.get<any>(`${geturl}`, options);
}
PostTaskAction(body:any){
const geturl = environment.apiURL + 'Tasks/Complete';
let options = {
headers: this.headers,
};
return this.http.post<any>(`${geturl}`,body, options);
}