11 lines
319 B
TypeScript
11 lines
319 B
TypeScript
const reprint = (data: any, emails: string) => {
|
|
// TODO: do the actual logic for the notification.
|
|
console.log(data);
|
|
console.log(emails);
|
|
|
|
// TODO send the error to systemAdmin users so they do not always need to be on the notifications.
|
|
// these errors are defined per notification.
|
|
};
|
|
|
|
export default reprint;
|