Add setup meetting from document modal

This commit is contained in:
Peter Maquiran
2021-07-29 10:13:39 +01:00
parent 554000ab4c
commit 022bbbec38
16 changed files with 1082 additions and 21 deletions
+6 -5
View File
@@ -5,7 +5,7 @@ import { AuthService } from '../services/auth.service';
import { User } from '../models/user.model';
import { environment } from 'src/environments/environment';
import { Observable } from 'rxjs';
import { CallMeeting } from '../models/CallMeeting';
import { DocumentSetUpMeeting } from '../models/CallMeeting';
import { Excludetask } from '../models/Excludetask';
@Injectable({
@@ -275,14 +275,15 @@ export class ProcessesService {
return this.http.get<any>(`${geturl}`, options);
}
CallMeeting(body: CallMeeting) {
const geturl = environment.apiURL + 'Processes/CallMeeting';
documentSetUpMeeting(body: DocumentSetUpMeeting) {
let url = environment.apiURL + 'Processes/CallMeeting';
url = url.replace('/V4/','/V5/')
let options: any = {
headers: this.headers,
}
return this.http.post<any>(`${geturl}`,body, options);
return this.http.post<any>(`${url}`,body, options);
}
}