summary refs log tree commit diff
path: root/rtc/src/models/RateLimit.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-08-13 13:00:16 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-08-13 13:00:16 +0200
commit0a08938d181bb6c30f480aa2f479bc4a22fce9df (patch)
tree25661686ded1b5806a345b6cf26c733910385a7b /rtc/src/models/RateLimit.ts
parentrename @fosscord/server-util to -> @fosscord/util (diff)
downloadserver-0a08938d181bb6c30f480aa2f479bc4a22fce9df.tar.xz
cleanup rtc
Diffstat (limited to 'rtc/src/models/RateLimit.ts')
-rw-r--r--rtc/src/models/RateLimit.ts25
1 files changed, 0 insertions, 25 deletions
diff --git a/rtc/src/models/RateLimit.ts b/rtc/src/models/RateLimit.ts
deleted file mode 100644

index 6a0e1ffd..00000000 --- a/rtc/src/models/RateLimit.ts +++ /dev/null
@@ -1,25 +0,0 @@ -import { Schema, Document, Types } from "mongoose"; -import db from "../util/Database"; - -export interface Bucket { - id: "global" | "error" | string; // channel_239842397 | guild_238927349823 | webhook_238923423498 - user_id: string; - hits: number; - blocked: boolean; - expires_at: Date; -} - -export interface BucketDocument extends Bucket, Document { - id: string; -} - -export const BucketSchema = new Schema({ - id: { type: String, required: true }, - user_id: { type: String, required: true }, // bot, user, oauth_application, webhook - hits: { type: Number, required: true }, // Number of times the user hit this bucket - blocked: { type: Boolean, required: true }, - expires_at: { type: Date, required: true }, -}); - -// @ts-ignore -export const BucketModel = db.model<BucketDocument>("Bucket", BucketSchema, "ratelimits");