This commit is contained in:
Adina Țeudan 2021-10-19 22:38:38 +03:00
parent 17abc20a85
commit 8acc9e6b24

View File

@ -280,7 +280,7 @@ export class ManualAnnotationService extends GenericService<ManualAddResponse> {
@RequiredParam() dossierId: string,
@RequiredParam() fileId: string,
) {
const url = `${this._defaultModelPath}/approve/${dossierId}/${fileId}`;
const url = `${this._defaultModelPath}/approve/${dossierId}/${fileId}/${annotationId}`;
return this._post<unknown>(body, url);
}