mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-03 01:10:07 +00:00
7 lines
310 B
TypeScript
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));
|
|
}
|