feat(UserFlags): add Spammer flag (#294)

This commit is contained in:
Suneet Tipirneni
2022-01-09 17:31:24 -05:00
committed by GitHub
parent 83f29b6928
commit 03f12d71ee
4 changed files with 16 additions and 0 deletions

View File

@@ -145,6 +145,10 @@ export enum UserFlags {
* Bot uses only [HTTP interactions](https://discord.com/developers/docs/interactions/receiving-and-responding#receiving-an-interaction) and is shown in the online member list
*/
BotHTTPInteractions = 1 << 19,
/**
* User has been identified as spammer
*/
Spammer = 1 << 20,
}
/**

View File

@@ -145,6 +145,10 @@ export enum UserFlags {
* Bot uses only [HTTP interactions](https://discord.com/developers/docs/interactions/receiving-and-responding#receiving-an-interaction) and is shown in the online member list
*/
BotHTTPInteractions = 1 << 19,
/**
* User has been identified as spammer
*/
Spammer = 1 << 20,
}
/**

View File

@@ -145,6 +145,10 @@ export const enum UserFlags {
* Bot uses only [HTTP interactions](https://discord.com/developers/docs/interactions/receiving-and-responding#receiving-an-interaction) and is shown in the online member list
*/
BotHTTPInteractions = 1 << 19,
/**
* User has been identified as spammer
*/
Spammer = 1 << 20,
}
/**

View File

@@ -145,6 +145,10 @@ export const enum UserFlags {
* Bot uses only [HTTP interactions](https://discord.com/developers/docs/interactions/receiving-and-responding#receiving-an-interaction) and is shown in the online member list
*/
BotHTTPInteractions = 1 << 19,
/**
* User has been identified as spammer
*/
Spammer = 1 << 20,
}
/**