mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-16 11:28:15 +00:00
Update guild.ts
This commit is contained in:
@@ -10,6 +10,7 @@ import { ImageFormats, ImageSize } from "../types/cdn.ts";
|
|||||||
import { ChannelCreatePayload, ChannelTypes } from "../types/channel.ts";
|
import { ChannelCreatePayload, ChannelTypes } from "../types/channel.ts";
|
||||||
import { Errors } from "../types/errors.ts";
|
import { Errors } from "../types/errors.ts";
|
||||||
import {
|
import {
|
||||||
|
AuditLogs,
|
||||||
BannedUser,
|
BannedUser,
|
||||||
BanOptions,
|
BanOptions,
|
||||||
ChannelCreateOptions,
|
ChannelCreateOptions,
|
||||||
@@ -439,6 +440,7 @@ export async function getAuditLogs(
|
|||||||
|
|
||||||
return RequestManager.get(endpoints.GUILD_AUDIT_LOGS(guildID), {
|
return RequestManager.get(endpoints.GUILD_AUDIT_LOGS(guildID), {
|
||||||
...options,
|
...options,
|
||||||
|
action_type: options.action_type ? AuditLogs[options.action_type] : undefined,
|
||||||
limit: options.limit && options.limit >= 1 && options.limit <= 100
|
limit: options.limit && options.limit >= 1 && options.limit <= 100
|
||||||
? options.limit
|
? options.limit
|
||||||
: 50,
|
: 50,
|
||||||
|
|||||||
Reference in New Issue
Block a user