UNPKG

@adminjs/express

Version:

This is an official AdminJS plugin which integrates it with Express.js framework

16 lines (11 loc) 284 B
import mongoose from "mongoose"; const { Schema } = mongoose; const ArticleSchema = new Schema({ title: String, content: String, author: String, createdAt: Date, published: Boolean, }); const Article = mongoose.model("Article", ArticleSchema); module.exports = Article;