Files
lst_v3/backend/notification/notification.reprintLabels.ts

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;