mirror of
https://github.com/arnaucube/commonroutesServer.git
synced 2026-02-28 05:26:42 +01:00
added admin model and controller
This commit is contained in:
17
models/adminModel.js
Normal file
17
models/adminModel.js
Normal file
@@ -0,0 +1,17 @@
|
||||
var mongoose = require('mongoose'),
|
||||
Schema = mongoose.Schema;
|
||||
|
||||
var mongooseUniqueValidator = require('mongoose-unique-validator');
|
||||
|
||||
|
||||
var adminSchema = new Schema({
|
||||
username: { type: String, required: true, unique: true },
|
||||
password: { type: String, required: true, select: false },
|
||||
email: { type: String, required: true },
|
||||
phone: { type: String },
|
||||
telegram: { type: String },
|
||||
token: { type: String, select: false }
|
||||
})
|
||||
|
||||
adminSchema.plugin(mongooseUniqueValidator);
|
||||
module.exports = mongoose.model('adminModel', adminSchema);
|
||||
Reference in New Issue
Block a user