Added username switching
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
export default defineEventHandler(async (event) => {
|
||||
const auth = getAuth(event)
|
||||
const auth = await getAuth(event)
|
||||
|
||||
return auth
|
||||
});
|
||||
|
15
web/server/api/auth/user/setdefaultusername.js
Normal file
15
web/server/api/auth/user/setdefaultusername.js
Normal file
@@ -0,0 +1,15 @@
|
||||
import { ObjectId } from "mongodb";
|
||||
|
||||
export default defineEventHandler(async (event) => {
|
||||
const { type } = await readBody(event)
|
||||
|
||||
const auth = await getAuth(event)
|
||||
|
||||
const usersColl = db.collection('users')
|
||||
|
||||
const username = type === 'discord' ? auth.discord.username : auth.minecraft.username
|
||||
|
||||
await usersColl.updateOne({ _id: new ObjectId(auth._id) }, { $set: { username: username, useMinecraftUsername: type === 'discord' ? false : true } })
|
||||
|
||||
return { username: username }
|
||||
});
|
Reference in New Issue
Block a user