Translated from English to Dutch

This commit is contained in:
2023-05-09 16:01:19 +02:00
parent c668ca7f37
commit 759c4e2bd1
22 changed files with 49 additions and 38 deletions

View File

@@ -1,5 +1,5 @@
export default defineEventHandler(async (event) => {
const auth = await getAuth(event)
const user = await getAuth(event)
return auth
return user
});

View File

@@ -2,7 +2,6 @@ import { ObjectId } from "mongodb";
export default defineEventHandler(async (event) => {
const { type } = await readBody(event)
const auth = await getAuth(event)
const usersColl = db.collection('users')