Revert "Making all files use prettier"

This reverts commit 5aa85986cd.
This commit is contained in:
2023-08-31 23:13:47 +02:00
parent 99167be941
commit 0952d89809
49 changed files with 3777 additions and 4018 deletions

View File

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