Linux server19.dn-server.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64
LiteSpeed
Server IP : 46.209.20.154 & Your IP : 216.73.217.55
Domains :
Cant Read [ /etc/named.conf ]
User : emadteam
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
emadteam /
home /
dashboard /
Delete
Unzip
Name
Size
Permission
Date
Action
routes
[ DIR ]
drwxr-xr-x
2024-07-03 19:49
App.js
542
B
-rw-r--r--
2024-07-03 19:49
Post.js
542
B
-rw-r--r--
2024-07-03 19:49
package-lock.json
39.77
KB
-rw-r--r--
2024-07-03 19:49
package.json
322
B
-rw-r--r--
2024-07-03 19:49
server.js
3.32
KB
-rw-r--r--
2024-07-03 19:49
Save
Rename
const mongoose = require('mongoose'); const { Schema } = mongoose; const postSchema = new Schema({ title: { type: String, required: true }, author: { type: String, required: true }, date: { type: Date, default: Date.now }, category: { type: String, required: true }, content: { type: String, required: true }, excerpt: { type: String, required: true }, image: { type: String }, slug: { type: String, required: true, unique: true } }); const Post = mongoose.model('Post', postSchema); module.exports = Post;