mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-18 23:09:59 +00:00
17 lines
302 B
TypeScript
17 lines
302 B
TypeScript
![]() |
import { MINUTES, SECONDS } from "../../utils";
|
||
|
|
||
|
export const RECENT_SPAM_EXPIRY_TIME = 10 * SECONDS;
|
||
|
export const RECENT_ACTION_EXPIRY_TIME = 5 * MINUTES;
|
||
|
|
||
|
export enum RecentActionType {
|
||
|
Message = 1,
|
||
|
Mention,
|
||
|
Link,
|
||
|
Attachment,
|
||
|
Emoji,
|
||
|
Line,
|
||
|
Character,
|
||
|
VoiceChannelMove,
|
||
|
MemberJoin,
|
||
|
}
|