Improve search

This commit is contained in:
Peter Maquiran
2021-04-19 15:21:35 +01:00
parent bd2a2fd3f4
commit 8b26ffd9a5
8 changed files with 116 additions and 36 deletions
+2 -2
View File
@@ -158,7 +158,7 @@ export class EventsService {
params: params
};
return this.http.post<Event>(`${puturl}`, event, options)
return this.http.post<string>(`${puturl}`, event, options)
}
postEventPr(event:Event, calendarName:string)
@@ -173,7 +173,7 @@ export class EventsService {
params: params
};
return this.http.post<Event>(`${puturl}`, event, options)
return this.http.post<string>(`${puturl}`, event, options)
}
deleteEvent(eventid:string, deletemode:number)