mirror of
https://github.com/danbulant/discord.js
synced 2026-05-25 04:52:22 +00:00
Fix toLowerCase errors in GuildAuditLogs (#1627)
This commit is contained in:
parent
45cc175851
commit
ead6d80c36
1 changed files with 2 additions and 0 deletions
|
|
@ -2,6 +2,7 @@ const Collection = require('../util/Collection');
|
|||
const Snowflake = require('../util/Snowflake');
|
||||
|
||||
const Targets = {
|
||||
ALL: 'ALL',
|
||||
GUILD: 'GUILD',
|
||||
CHANNEL: 'CHANNEL',
|
||||
USER: 'USER',
|
||||
|
|
@ -14,6 +15,7 @@ const Targets = {
|
|||
};
|
||||
|
||||
const Actions = {
|
||||
ALL: null,
|
||||
GUILD_UPDATE: 1,
|
||||
CHANNEL_CREATE: 10,
|
||||
CHANNEL_UPDATE: 11,
|
||||
|
|
|
|||
Loading…
Reference in a new issue