Skip to main content
Module

x/discordeno/helpers/messages/pinMessage.ts

Discord API library for Deno
Extremely Popular
Go to Latest
File
import type { Bot } from "../../bot.ts";
/** Pin a message in a channel. Requires MANAGE_MESSAGES. Max pins allowed in a channel = 50. */export async function pinMessage(bot: Bot, channelId: bigint, messageId: bigint) { await bot.rest.runMethod<undefined>(bot.rest, "PUT", bot.constants.routes.CHANNEL_PIN(channelId, messageId));}