add warning webhook

This commit is contained in:
Michael C
2023-02-22 00:08:27 -05:00
parent df279cf48a
commit 76ce1017ea
4 changed files with 62 additions and 0 deletions

View File

@@ -13,6 +13,10 @@ app.post("/webhook/FirstTimeSubmissions", (req, res) => {
res.sendStatus(200);
});
app.post("/webhook/WarningWebhook", (req, res) => {
res.sendStatus(200);
});
app.post("/webhook/CompletelyIncorrectReport", (req, res) => {
res.sendStatus(200);
});