feat: Added authentication sstem with discord
This commit is contained in:
1
webv2/server/utils/config.ts
Normal file
1
webv2/server/utils/config.ts
Normal file
@@ -0,0 +1 @@
|
||||
export const config = useRuntimeConfig()
|
24
webv2/server/utils/models.ts
Normal file
24
webv2/server/utils/models.ts
Normal file
@@ -0,0 +1,24 @@
|
||||
import { Schema, Types, model } from 'mongoose'
|
||||
|
||||
const userSchema = new Schema({
|
||||
username: { type: String, required: true },
|
||||
usernameType: { type: String, required: true, default: 'discord' },
|
||||
discord: {
|
||||
id: { type: String, required: true, unique: true },
|
||||
username: { type: String, required: true }
|
||||
},
|
||||
minecraft: {
|
||||
uuid: { type: String, required: false, unique: true },
|
||||
username: { type: String, required: false }
|
||||
},
|
||||
role: {
|
||||
admin: Boolean,
|
||||
moderator: Boolean,
|
||||
teamAdmin: Boolean
|
||||
},
|
||||
teamInvites: [
|
||||
Types.ObjectId
|
||||
]
|
||||
})
|
||||
|
||||
export const UserModel = model<IUser>('User', userSchema)
|
Reference in New Issue
Block a user