Files
bflows-bandi-fe/src/service/email-service.js
Vitalii Kiiko 8e28f4355b - added buttons of 'resend emails' to single amendment page;
- added the same bttons to amendments table;
2025-05-13 10:10:57 +02:00

14 lines
359 B
JavaScript

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]
]);
};
}