From 4f2596789875b894e5b45d7cfafcc7cf6ca46aef Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Thu, 12 Aug 2021 20:33:02 +0200 Subject: :sparkles: util --- util/src/models/Emoji.ts | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 util/src/models/Emoji.ts (limited to 'util/src/models/Emoji.ts') diff --git a/util/src/models/Emoji.ts b/util/src/models/Emoji.ts new file mode 100644 index 00000000..3e5cad53 --- /dev/null +++ b/util/src/models/Emoji.ts @@ -0,0 +1,29 @@ +import { Schema, model, Types, Document } from "mongoose"; +import db from "../util/Database"; + +export interface Emoji extends Document { + id: string; + animated: boolean; + available: boolean; + guild_id: string; + managed: boolean; + name: string; + require_colons: boolean; + url: string; + roles: string[]; // roles this emoji is whitelisted to (new discord feature?) +} + +export const EmojiSchema = new Schema({ + id: { type: String, required: true }, + animated: Boolean, + available: Boolean, + guild_id: String, + managed: Boolean, + name: String, + require_colons: Boolean, + url: String, + roles: [String], +}); + +// @ts-ignore +export const EmojiModel = db.model("Emoji", EmojiSchema, "emojis"); -- cgit 1.5.1