mirror of
https://github.com/Akif9748/akf-forum.git
synced 2024-11-01 03:25:04 +03:00
21 lines
No EOL
506 B
JavaScript
21 lines
No EOL
506 B
JavaScript
const mongoose = require("mongoose")
|
|
|
|
const schema = new mongoose.Schema({
|
|
name: { type: String, unique: true },
|
|
desp: String, position: Number,
|
|
id: { type: String, unique: true },
|
|
authorID: { type: String }
|
|
|
|
});
|
|
schema.methods.takeId = async function () {
|
|
this.id = String(await model.count() || 0);
|
|
return this;
|
|
}
|
|
|
|
schema.methods.getLink = function (id = this.id) {
|
|
return "/categories/" + this.id;
|
|
}
|
|
|
|
const model = mongoose.model('category', schema);
|
|
|
|
module.exports = model; |