summary refs log tree commit diff
path: root/util/oldModels/VoiceState.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-08-24 16:35:59 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-08-24 16:35:59 +0200
commit05d72ac3ac0c8d887942c783a2c93a1ad7a34d1b (patch)
tree3e861ba5c436e48658da913a55aabab37a868227 /util/oldModels/VoiceState.ts
parent:white_check_mark: util unit tests (diff)
downloadserver-05d72ac3ac0c8d887942c783a2c93a1ad7a34d1b.tar.xz
:sparkles: util
Diffstat (limited to 'util/oldModels/VoiceState.ts')
-rw-r--r--util/oldModels/VoiceState.ts34
1 files changed, 0 insertions, 34 deletions
diff --git a/util/oldModels/VoiceState.ts b/util/oldModels/VoiceState.ts
deleted file mode 100644

index c1f90edd..00000000 --- a/util/oldModels/VoiceState.ts +++ /dev/null
@@ -1,34 +0,0 @@ -import { PublicMember } from "./Member"; -import { Schema, model, Types, Document } from "mongoose"; -import db from "../util/Database"; - -export interface VoiceState extends Document { - guild_id?: string; - channel_id: string; - user_id: string; - session_id: string; - deaf: boolean; - mute: boolean; - self_deaf: boolean; - self_mute: boolean; - self_stream?: boolean; - self_video: boolean; - suppress: boolean; // whether this user is muted by the current user -} - -export const VoiceSateSchema = new Schema({ - guild_id: String, - channel_id: String, - user_id: String, - session_id: String, - deaf: Boolean, - mute: Boolean, - self_deaf: Boolean, - self_mute: Boolean, - self_stream: Boolean, - self_video: Boolean, - suppress: Boolean, // whether this user is muted by the current user -}); - -// @ts-ignore -export const VoiceStateModel = db.model<VoiceState>("VoiceState", VoiceSateSchema, "voicestates");