Add success message

This commit is contained in:
Peter Maquiran
2021-05-28 15:13:50 +01:00
parent 09eba39005
commit 74e77434e3
6 changed files with 162 additions and 31 deletions
+1 -1
View File
@@ -137,7 +137,7 @@ export class ProcessesService {
let options = {
headers: this.headers,
};
return this.http.post<any>(`${geturl}`, body, options).toPromise()
return this.http.post<any>(`${geturl}`, body, options)
}
CompleteTask(body:any){
const geturl = environment.apiURL + 'Tasks/CompleteTask';