Added Template

This commit is contained in:
Intevel ツ 2021-05-05 15:37:27 +02:00
parent 85875c85bd
commit b9684ae926
2 changed files with 62 additions and 0 deletions

61
src/models/Template.ts Normal file
View File

@ -0,0 +1,61 @@
import {
Schema,
model,
Types,
Document
} from "mongoose";
import db from "../util/Database";
import {
PublicUser,
User,
UserModel,
PublicUserProjection
} from "./User";
import {
Guild, GuildModel
} from "./Guild";
export interface Template extends Document {
code: string;
name: string;
description ? : string;
usage_count ? : number;
cretor_id: string;
creator: User;
created_at: Date;
updated_at: Date;
source_guild_id: String;
serialized_source_guild: Guild;
}
export const TemplateSchema = new Schema({
code: String,
name: String,
description: String,
usage_count: Number,
cretor_id: String,
created_at: Date,
updated_at: Date,
source_guild_id: String,
});
TemplateSchema.virtual("creator", {
ref: UserModel,
localField: "creator_id",
foreignField: "id",
justOne: false,
autopopulate: {
select: PublicUserProjection
},
});
TemplateSchema.virtual("serialized_source_guild", {
ref: GuildModel,
localField: "source_guild_id",
foreignField: "id",
justOne: false,
autopopulate: true,
});
// @ts-ignore
export const TemplateModel = db.model < Template > ("Template", TemplateSchema, "templates");

View File

@ -25,6 +25,7 @@ export * from "./Ban";
export * from "./Channel";
export * from "./Emoji";
export * from "./Event";
export * from "./Template";
export * from "./Guild";
export * from "./Invite";
export * from "./Interaction";