summary refs log tree commit diff
path: root/src/models/Emoji.ts
blob: 530c2cc739d0b4fb265be11ee35aeb161d6e91ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import { Schema, model, Types, Document } from "mongoose";
import db from "../util/Database";

export interface Emoji extends Document {
	id: bigint;
	animated: boolean;
	available: boolean;
	guild_id: bigint;
	managed: boolean;
	name: string;
	require_colons: boolean;
	url: string;
	roles: bigint[]; // roles this emoji is whitelisted to
}

export const EmojiSchema = new Schema({
	id: { type: Types.Long, required: true },
	animated: Boolean,
	available: Boolean,
	guild_id: Types.Long,
	managed: Boolean,
	name: String,
	require_colons: Boolean,
	url: String,
	roles: [Types.Long],
});

// @ts-ignore
export const EmojiModel = db.model<Emoji>("Emoji", EmojiSchema, "emojis");