3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-22 09:15:03 +00:00

Migrate Starboard to new Plugin structure

This commit is contained in:
Dark 2020-07-22 23:15:40 +02:00
parent aef2b4f43a
commit 803da94829
12 changed files with 443 additions and 0 deletions

View file

@ -0,0 +1,6 @@
import { StarboardMessage } from "src/data/entities/StarboardMessage";
import { noop } from "src/utils";
export async function removeMessageFromStarboard(pluginData, msg: StarboardMessage) {
await pluginData.client.deleteMessage(msg.starboard_channel_id, msg.starboard_message_id).catch(noop);
}