16 lines
491 B
JavaScript
16 lines
491 B
JavaScript
|
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 }
|
||
|
});
|