1
0

♻️ Cleaned lots of code and change getvip implementation

getVip is no longer time limited, it will remove it once a limit of
vip users is reached (to be implemented)
This commit is contained in:
2022-01-05 18:13:59 +01:00
parent bc401bd531
commit 05a93ba316
13 changed files with 162 additions and 92 deletions

View File

@@ -1,7 +1,9 @@
import { ActionType } from "../../enums/ActionType";
export interface Action {
type: string;
channelId: string;
userId: string;
scheduledAt?: number;
data: any;
}
type: ActionType;
channelId: string;
userId: string;
scheduledAt?: number;
data: any;
}