Files
discordeno/helpers/integrations/getIntegrations.ts
ITOH b00504ce07 perf(plugins/helpers,rest,site,template)!: uppercase rest methods (#2252)
* perf(plugins/helpers,rest,site,template)!: uppercase rest methods
There is no need for us to pass the methods in lower case and then use the `toUpperCase()` method everywhere. Therefore this PR changes every lowercase method to be uppercase (eg. `"get"` => `"GET"`).

* template is old version
2022-05-25 20:45:51 +02:00

37 lines
1.2 KiB
TypeScript

import type { Bot } from "../../bot.ts";
import { Collection } from "../../util/collection.ts";
import { DiscordIntegration } from "../../types/discord.ts";
/** Returns a list of integrations for the guild. Requires the MANAGE_GUILD permission. */
export async function getIntegrations(bot: Bot, guildId: bigint) {
const result = await bot.rest.runMethod<DiscordIntegration[]>(
bot.rest,
"GET",
bot.constants.routes.GUILD_INTEGRATIONS(guildId),
);
return new Collection(
result.map((res) => {
const integration = bot.transformers.integration(bot, {
guild_id: guildId.toString(),
id: res.id,
name: res.name,
type: res.type,
enabled: res.enabled,
syncing: res.syncing,
role_id: res.role_id,
enable_emoticons: res.enable_emoticons,
expire_behavior: res.expire_behavior,
expire_grace_period: res.expire_grace_period,
user: res.user,
account: res.account,
synced_at: res.synced_at,
subscriber_count: res.subscriber_count,
revoked: res.revoked,
application: res.application,
});
return [integration.id, integration];
}),
);
}