robustifying arrays and foreignkeys

This commit is contained in:
2023-02-01 18:54:53 +01:00
parent 43ad5c3048
commit 12285b2473
5 changed files with 72 additions and 31 deletions

View File

@@ -91,7 +91,7 @@ export class CrudService extends ApiService {
}
public get(resource: string, id: string) {
return this.http.get<{}>(
return this.http.get<any>(
`${this.api_root}/${resource.toLowerCase()}/${id}`
);
}