Skip to content

Commit

Permalink
Fix error in user creation endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
zoul committed Sep 16, 2024
1 parent c070058 commit a805d94
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/account/me/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ export async function POST(request: NextRequest): Promise<Response> {
slackUserRelationId: undefined,
createdAt: new Date().toISOString(),
featureFlags: ["registrationV2"],
// TBD: Take new fields from payload
tags: "",
});
await logUserCreatedEvent(user);
return new Response("User profile created.", { status: 201 });
Expand Down

0 comments on commit a805d94

Please sign in to comment.