fix(api): user routes

This commit is contained in:
Lars Hampe 2024-11-12 16:16:55 +01:00
parent e8d790d799
commit fc125519b9
2 changed files with 8 additions and 3 deletions

View File

@ -4,6 +4,7 @@ import { createRoute } from '@hono/zod-openapi'
import { eq } from 'drizzle-orm'
import type { userApi } from '.'
import { verifyAuthentication } from '../utils/authentication'
import { openApiErrorResponses, openApiSecurity } from '../utils/openapi'
const route = createRoute({
@ -24,9 +25,9 @@ const route = createRoute({
export const registerUserGet = (api: typeof userApi) => {
return api.openapi(route, async (c) => {
const user = c.get('user')
const userId = await verifyAuthentication(c)
const result = await db.query.user.findFirst({
where: eq(userDb.id, user.id),
where: eq(userDb.id, userId),
})
if (!result) {

View File

@ -70,7 +70,11 @@ export const registerUserWebhook = (api: typeof userApi) => {
case 'user.created': {
const result = await userCreate({ payload: verifiedPayload })
logger.info('Clerk Webhook', result)
return c.json(UserOutput.parse(result), 200)
if (result) {
return c.json({}, 204)
}
return c.json({}, 404)
}
default:
throw new HTTPException(404, { message: 'Webhook type not supported' })