mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-16 03:18:17 +00:00
17 lines
556 B
TypeScript
17 lines
556 B
TypeScript
import { rest } from "../../rest/rest.ts";
|
|
import type { ModifyGuildWelcomeScreen } from "../../types/guilds/modify_guild_welcome_screen.ts";
|
|
import type { WelcomeScreen } from "../../types/guilds/welcome_screen.ts";
|
|
import { endpoints } from "../../util/constants.ts";
|
|
import { snakelize } from "../../util/utils.ts";
|
|
|
|
export async function editWelcomeScreen(
|
|
guildId: bigint,
|
|
options: ModifyGuildWelcomeScreen,
|
|
) {
|
|
return await rest.runMethod<WelcomeScreen>(
|
|
"patch",
|
|
endpoints.GUILD_WELCOME_SCREEN(guildId),
|
|
snakelize(options),
|
|
);
|
|
}
|