MCPcopy Index your code
hub / github.com/OpenPipe/OpenPipe / captureSignup

Function captureSignup

app/src/utils/analytics/serverAnalytics.ts:32–43  ·  view source on GitHub ↗
(user: User, gitHubUsername: string)

Source from the content-addressed store, hash-verified

30};
31
32export const captureSignup = (user: User, gitHubUsername: string) => {
33 posthogServerClient?.capture({
34 distinctId: user.id,
35 event: "signup",
36 properties: {
37 name: user.name,
38 email: user.email,
39 encodedEmail: encodeURIComponent(user.email ?? ""),
40 gitHubUsername,
41 },
42 });
43};

Callers 1

signInFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected