import { Schema, PopulatedDoc } from "mongoose"; import { IBand } from "@models/band"; export interface IChapter { title: string; summary: string; id?: number; // index: number; words?: number; notes: string; genre: string[]; bands: PopulatedDoc[]; characters: string[]; relationships: string[][]; nsfw: boolean; loggedInOnly: boolean; hidden: boolean; posted?: Date; } export const Chapter = new Schema({ title: { type: String, default: "", }, id: { type: Number, }, summary: { type: String, }, words: { type: Number, }, notes: { type: String, }, genre: [ { type: String, }, ], bands: [ { type: Number, ref: "Band", }, ], characters: [{ type: String }], relationships: [[{ type: String }]], nsfw: { type: Boolean, }, loggedInOnly: { type: Boolean, default: true, }, hidden: { type: Boolean, default: false, }, posted: { type: Date, default: new Date(), }, });