1
0
mirror of https://github.com/nttgin/BGPalerter.git synced 2024-05-19 06:50:08 +00:00

introduced input polymorphism and users groups

This commit is contained in:
Massimo Candela
2019-07-05 17:06:57 +02:00
parent b7ccdacf07
commit 6635a23b7f
10 changed files with 135 additions and 98 deletions

View File

@@ -3,8 +3,8 @@ import nodemailer from "nodemailer";
export default class ReportEmail extends Report {
constructor(channels, env) {
super(channels, env);
constructor(channels, params, env) {
super(channels, params, env);
}
report = (message, content) => {