mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
Add setup meetting from document modal
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user