mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 04:32:01 +03:00
15 lines
654 B
TypeScript
15 lines
654 B
TypeScript
|
// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/helpers/integrations/get_integrations.ts
|
||
|
|
||
|
|
||
|
import { rest } from "../../rest/rest.ts";
|
||
|
import type { Integration } from "../../types/integrations/integration.ts";
|
||
|
import { endpoints } from "../../util/constants.ts";
|
||
|
import { requireBotGuildPermissions } from "../../util/permissions.ts";
|
||
|
|
||
|
/** Returns a list of integrations for the guild. Requires the MANAGE_GUILD permission. */
|
||
|
export async function getIntegrations(guildId: bigint) {
|
||
|
await requireBotGuildPermissions(guildId, ["MANAGE_GUILD"]);
|
||
|
|
||
|
return await rest.runMethod<Integration>("get", endpoints.GUILD_INTEGRATIONS(guildId));
|
||
|
}
|