✨ Rate Limit Bucket
This commit is contained in:
		
							parent
							
								
									54fe0c9f1a
								
							
						
					
					
						commit
						3a8c7ec1c3
					
				| @ -1,15 +1,12 @@ | ||||
| import { Schema, Document, Types } from "mongoose"; | ||||
| import db from "../util/Database"; | ||||
| import { ChannelModel } from "./Channel"; | ||||
| import { UserModel } from "./User"; | ||||
| import { GuildModel } from "./Guild"; | ||||
| 
 | ||||
| export interface Bucket { | ||||
| 	id: "global" | string; // channel_239842397 | guild_238927349823 | webhook_238923423498
 | ||||
| 	user: string; | ||||
| 	id: "global" | "error" | string; // channel_239842397 | guild_238927349823 | webhook_238923423498
 | ||||
| 	user_id: string; | ||||
| 	hits: number; | ||||
| 	blocked: boolean; | ||||
| 	created_at: Date; | ||||
| 	expires_at: Date; | ||||
| } | ||||
| 
 | ||||
| export interface BucketDocument extends Bucket, Document { | ||||
| @ -21,7 +18,7 @@ export const BucketSchema = new Schema({ | ||||
| 	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 }, | ||||
| 	created_at: { type: Date, required: true }, | ||||
| 	expires_at: { type: Date, required: true }, | ||||
| }); | ||||
| 
 | ||||
| // @ts-ignore
 | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Flam3rboy
						Flam3rboy