mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-16 11:28:15 +00:00
21 lines
600 B
TypeScript
21 lines
600 B
TypeScript
import { rest } from "../../rest/rest.ts";
|
|
import type { Template } from "../../types/templates/template.ts";
|
|
import { endpoints } from "../../util/constants.ts";
|
|
import { requireBotGuildPermissions } from "../../util/permissions.ts";
|
|
|
|
/**
|
|
* Deletes a template from a guild.
|
|
* Requires the `MANAGE_GUILD` permission.
|
|
*/
|
|
export async function deleteGuildTemplate(
|
|
guildId: bigint,
|
|
templateCode: string,
|
|
) {
|
|
await requireBotGuildPermissions(guildId, ["MANAGE_GUILD"]);
|
|
|
|
return await rest.runMethod<Template>(
|
|
"delete",
|
|
`${endpoints.GUILD_TEMPLATES(guildId)}/${templateCode}`,
|
|
);
|
|
}
|