service updates

This commit is contained in:
Timo Bejan 2021-10-13 10:37:16 +03:00
parent 4c07dc3a69
commit f84bea5528
3 changed files with 3 additions and 3 deletions

View File

@ -61,7 +61,7 @@ export class DossierTemplatesService extends EntitiesService<DossierTemplate, ID
}
delete(body: List): Observable<unknown> {
return super.delete(body, `${this._defaultModelPath}/delete`);
return super._post(body, `${this._defaultModelPath}/delete`);
}
@Validate()

View File

@ -79,6 +79,6 @@ export class FileAttributesService extends EntitiesService<FileAttributeConfig,
@Validate()
deleteFileAttributes(@RequiredParam() body: List, @RequiredParam() dossierTemplateId: string) {
const url = `${this._defaultModelPath}/config/fileAttribute/${dossierTemplateId}/delete`;
return this.delete(body, url);
return this._post(body, url);
}
}

@ -1 +1 @@
Subproject commit 0de03537c49056ee3d66563619ed496fb55ba296
Subproject commit 019072dfd24f37f0a4692a5a99e32f5ab6457108