Beautifying

This commit is contained in:
2023-04-24 23:38:33 +02:00
parent e2747dab3f
commit 3a3bb89635
40 changed files with 4010 additions and 3388 deletions

View File

@@ -1,9 +1,9 @@
const { Schema, model } = require('mongoose');
const { Schema, model } = require("mongoose");
const staffAppSchema = new Schema({
_id: Schema.Types.ObjectId,
userID: { type: String, required: true },
uuid: { type: String, required: true },
_id: Schema.Types.ObjectId,
userID: { type: String, required: true },
uuid: { type: String, required: true }
});
module.exports = model('staffapp', staffAppSchema, 'staffapp');
module.exports = model("staffapp", staffAppSchema, "staffapp");