feat: Added team joining
This commit is contained in:
@@ -3,6 +3,10 @@ export default defineEventHandler(async (event) => {
|
||||
|
||||
const userId: string = event.context.params ? event.context.params.id : '@me'
|
||||
|
||||
if (userId === '@me') {
|
||||
throw createError({ statusCode: 400, statusMessage: 'Cannot invite current user to a team' })
|
||||
}
|
||||
|
||||
const user = await getUser(userId, event)
|
||||
|
||||
const { teamInvites } = await UserModel.findByIdAndUpdate(user._id, {
|
||||
|
Reference in New Issue
Block a user