akf-forum/models/User.js

28 lines
644 B
JavaScript
Raw Normal View History

const mongoose = require("mongoose")
2022-04-06 21:14:46 +03:00
const schema = new mongoose.Schema({
id: { type: String, unique: true },
2022-04-06 21:14:46 +03:00
name: String,
avatar: { type: String, default: "/images/guest.png" },
time: { type: Date, default: Date.now },
2022-04-06 21:14:46 +03:00
deleted: { type: Boolean, default: false },
admin: { type: Boolean, default: false }
});
schema.methods.takeId = async function () {
this.id = String(await model.count() || 0);
return this;
}
schema.methods.getLink = function (id = this.id) {
return "/users/" + id;
}
const model = mongoose.model('user', schema);
model.get = id => model.findOne({ id });
module.exports = model;