- added buttons of 'resend emails' to single amendment page;

- added the same bttons to amendments table;
This commit is contained in:
Vitalii Kiiko
2025-05-13 10:10:57 +02:00
parent d92c0f45a3
commit 8e28f4355b
6 changed files with 139 additions and 7 deletions

View File

@@ -0,0 +1,13 @@
import { NetworkService } from './network-service';
const API_BASE_URL = process.env.REACT_APP_API_EXECUTION_ADDRESS;
export default class EmailService {
static emailResend = (id, callback, errCallback) => {
NetworkService.post(`${API_BASE_URL}/email/resend`, {}, callback, errCallback, [
['userActionId', id]
]);
};
}