3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-11 20:55:01 +00:00

Migrate Starboard to new Plugin structure

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

View file

@ -0,0 +1,3 @@
export async function removeMessageFromStarboardMessages(pluginData, starboard_message_id: string, channel_id: string) {
await pluginData.state.starboardMessages.deleteStarboardMessage(starboard_message_id, channel_id);
}