This commit is contained in:
tiago.kayaya
2021-10-09 12:15:46 +01:00
40 changed files with 879 additions and 582 deletions
-3
View File
@@ -249,7 +249,6 @@ export class EventsService {
}
getRecurrenceTypes(): any{
const geturl = environment.apiURL + 'Calendar/RecurrenceTypes';
let options = {
@@ -259,8 +258,6 @@ export class EventsService {
}
getEvents(calendarname:string, startdate:string, enddate:string): Observable<Event[]>{
const geturl = environment.apiURL + 'calendar/GetEvents';
let params = new HttpParams();
+17
View File
@@ -340,4 +340,21 @@ export class ProcessesService {
return this.http.get<any>(`${url}`, options);
}
GetViewer(DocId:string, FsId:string){
const geturl = environment.apiURL + 'ecm/document/viewfile';
let params = new HttpParams();
params = params.set("docId", DocId);
params = params.set("applicationId", FsId);
let options = {
headers: this.headers,
params: params
};
return this.http.get<any>(`${geturl}`, options);
}
}