Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

track successful account creation (#955)

authored by

Ansh and committed by
GitHub
269c0687 343154a4

+3
+1
src/lib/analytics/types.ts
··· 12 12 'Sign In': {resumedSession: boolean} // CAN BE SERVER 13 13 'Create Account': {} // CAN BE SERVER 14 14 'Try Create Account': {} 15 + 'Create Account Successfully': {} 15 16 'Signin:PressedForgotPassword': {} 16 17 'Signin:PressedSelectService': {} 17 18 // COMPOSER / CREATE POST events
+2
src/state/models/session.ts
··· 11 11 import {z} from 'zod' 12 12 import {RootStoreModel} from './root-store' 13 13 import {IS_PROD} from 'lib/constants' 14 + import {track} from 'lib/analytics/analytics' 14 15 15 16 export type ServiceDescription = DescribeServer.OutputSchema 16 17 ··· 388 389 389 390 await this.setActiveSession(agent, did) 390 391 this._log('SessionModel:createAccount succeeded') 392 + track('Create Account Successfully') 391 393 } 392 394 393 395 /**