Files
discordeno/src/helpers/members/edit_bot_nickname.ts
T
2021-11-10 20:35:03 +00:00

14 lines
392 B
TypeScript

import type { Bot } from "../../bot.ts";
/** Edit the nickname of the bot in this guild */
export async function editBotNickname(bot: Bot, guildId: bigint, options: { nick: string | null; reason?: string }) {
const response = await bot.rest.runMethod<{ nick: string }>(
bot.rest,
"patch",
bot.constants.endpoints.USER_NICK(guildId),
options
);
return response.nick;
}