Compare commits

..

No commits in common. "RED10768" and "master" have entirely different histories.

View File

@ -45,9 +45,6 @@ export abstract class GenericService<I> {
this._updateLastChanged(entityId);
return this.getAll<R>(`${this._defaultModelPath}/${entityId}`, queryParams);
}
getForTemplateId<R = I[]>(id: string, ...args: unknown[]): Observable<R> {
return this.getAll<R>(`${this._defaultModelPath}/dossier-template/${id}`);
}
delete(body: unknown, modelPath = this._defaultModelPath, queryParams?: List<QueryParam>): Observable<unknown> {
let path = `/${this._serviceName}/${encodeURI(modelPath)}`;