Skip to content
Snippets Groups Projects
Commit af515c74 authored by Tom Käsler's avatar Tom Käsler
Browse files

fix content find

parent 7263f523
No related merge requests found
......@@ -25,8 +25,8 @@ export class ContentService extends BaseHttpService {
getContents(roomId: string): Observable<Content[]> {
const connectionUrl = this.apiUrl.base + this.apiUrl.content + this.apiUrl.find;
return this.http.post<Content[]>(connectionUrl, {
properties: { type: 'Content' },
externalFilters: { roomId: roomId }
properties: { roomId: roomId },
externalFilters: {}
}, httpOptions).pipe(
catchError(this.handleError('getContents', []))
);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment