- updated special amendment submitting;

This commit is contained in:
Vitalii Kiiko
2025-10-01 08:51:49 +02:00
parent 712126fb8e
commit f623bbe200
2 changed files with 47 additions and 1 deletions

View File

@@ -42,6 +42,10 @@ export default class AmendmentsService {
]);
};
static createAmendmentSpecial = (body, callback, errCallback, queryParams) => {
NetworkService.post(`${API_BASE_URL}/amendments/special`, body, callback, errCallback, queryParams);
};
static sendReminderForSoccorso = (id, callback, errCallback, queryParams) => {
NetworkService.post(`${API_BASE_URL}/amendments/${id}/reminder`, {}, callback, errCallback, queryParams);
};