From a84f63bbd02a84b112710f56d7486f419c1a10b6 Mon Sep 17 00:00:00 2001 From: Matthew R Date: Sat, 8 Aug 2020 19:22:39 -0400 Subject: [PATCH] add notifications --- src/api/routes/Webhook.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/routes/Webhook.ts b/src/api/routes/Webhook.ts index 131283f..65c5fe4 100644 --- a/src/api/routes/Webhook.ts +++ b/src/api/routes/Webhook.ts @@ -22,7 +22,7 @@ export default class Webhook extends Route { embed.setFooter(this.server.client.user.username, this.server.client.user.avatarURL); embed.setTimestamp(); const chan = this.server.client.getChannel('580950455581147146'); - chan.createMessage({ embed }); + chan.createMessage({ content: '<@&741797822940315650>', embed }); return res.status(200).json({ code: this.constants.codes.SUCCESS, message: this.constants.codes.SUCCESS }); } catch (err) { return this.handleError(err, res);