summary refs log tree commit diff
path: root/api/scripts/stresstest/src/message
diff options
context:
space:
mode:
authorTheArcaneBrony <myrainbowdash949@gmail.com>2022-08-15 11:13:21 +0200
committerTheArcaneBrony <myrainbowdash949@gmail.com>2022-08-15 11:13:21 +0200
commit1a94fb1208bf0e4c669cad16aff5f57dc0bf7a3c (patch)
tree1035116ddbaacc5fcc5ae250a6592eb88f78f75c /api/scripts/stresstest/src/message
parentDo the funny thing (make user->invite cascade delet) (diff)
parentchange dev panel path, we missed this one... (diff)
downloadserver-1a94fb1208bf0e4c669cad16aff5f57dc0bf7a3c.tar.xz
Merge branch 'dev/restructure' into staging
Diffstat (limited to 'api/scripts/stresstest/src/message')
-rw-r--r--api/scripts/stresstest/src/message/send.js23
1 files changed, 0 insertions, 23 deletions
diff --git a/api/scripts/stresstest/src/message/send.js b/api/scripts/stresstest/src/message/send.js
deleted file mode 100644

index d1b86914..00000000 --- a/api/scripts/stresstest/src/message/send.js +++ /dev/null
@@ -1,23 +0,0 @@ -const fetch = require("node-fetch"); -const fs = require("fs"); -let config = require("./../../config.json"); -module.exports = sendMessage; -async function sendMessage(account) { - let body = { - fingerprint: "805826570869932034.wR8vi8lGlFBJerErO9LG5NViJFw", - content: "Test", - tts: false - }; - let x = await fetch(config.url + "/channels/" + config["text-channel"] + "/messages", { - method: "POST", - headers: { - "Content-Type": "application/json", - Authorization: account.token - }, - body: JSON.stringify(body) - }); - console.log(x); - x = await x.json(); - console.log(x); - return x; -}