Files
discordeno/helpers/messages/unpinMessage.ts
2022-02-11 09:49:53 +00:00

7 lines
310 B
TypeScript

/** Unpin a message in a channel. Requires MANAGE_MESSAGES. */
import type { Bot } from "../../bot.ts";
export async function unpinMessage(bot: Bot, channelId: bigint, messageId: bigint) {
await bot.rest.runMethod<undefined>(bot.rest, "delete", bot.constants.endpoints.CHANNEL_PIN(channelId, messageId));
}