MCPcopy Index your code
hub / github.com/Linen-dev/linen.dev / eventUserNameUpdate

Function eventUserNameUpdate

apps/web/services/events/eventUserNameUpdate.ts:3–13  ·  view source on GitHub ↗
({
  userId,
  accountId,
}: {
  userId: string;
  accountId: string;
})

Source from the content-addressed store, hash-verified

1import { createTypesenseUserNameUpdate } from 'queue/jobs';
2
3export async function eventUserNameUpdate({
4 userId,
5 accountId,
6}: {
7 userId: string;
8 accountId: string;
9}) {
10 await Promise.allSettled([
11 createTypesenseUserNameUpdate({ accountId, userId }),
12 ]);
13}

Callers 3

updateUserFunction · 0.90
profile.tsFile · 0.90
index.tsFile · 0.90

Calls 1

Tested by

no test coverage detected