Adding verify support for non guild members

This commit is contained in:
2023-03-18 23:22:01 +01:00
parent af34d20aee
commit 6fa3b63d19
4 changed files with 31 additions and 30 deletions

View File

@@ -4,7 +4,6 @@ const verifySchema = new Schema({
_id: Schema.Types.ObjectId,
userID: { type: String, required: true },
uuid: { type: String, required: true },
rank: { type: String, required: true },
});
module.exports = model('verify', verifySchema, 'verify');