diff --git a/apps/api/src/user/get.ts b/apps/api/src/user/get.ts index bee1e71..859d378 100644 --- a/apps/api/src/user/get.ts +++ b/apps/api/src/user/get.ts @@ -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) { diff --git a/apps/api/src/user/webhook.ts b/apps/api/src/user/webhook.ts index 56c9cbe..bdb6ba5 100644 --- a/apps/api/src/user/webhook.ts +++ b/apps/api/src/user/webhook.ts @@ -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' })