Add page pattern

This commit is contained in:
Peter Maquiran
2021-07-27 21:21:16 +01:00
parent 81c18a14ac
commit 34a16d6b17
4 changed files with 20 additions and 16 deletions
+2 -1
View File
@@ -6,6 +6,7 @@ import { User } from '../models/user.model';
import { environment } from 'src/environments/environment';
import { Observable } from 'rxjs';
import { CallMeeting } from '../models/CallMeeting';
import { Excludetask } from '../models/Excludetask';
@Injectable({
providedIn: 'root'
@@ -156,7 +157,7 @@ export class ProcessesService {
return this.http.post<any>(`${geturl}`, body, options)
}
CompleteTask(body:any){
CompleteTask(body:Excludetask) {
const geturl = environment.apiURL + 'Tasks/CompleteTask';
let options = {