Bluesky app fork with some witchin' additions ๐Ÿ’ซ
0
fork

Configure Feed

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

๐Ÿชต๐Ÿ“Œ (#5594)

authored by

Samuel Newman and committed by
GitHub
523a9a48 2aa365b5

+4
+2
src/lib/statsig/events.ts
··· 145 145 } 146 146 'post:mute': {} 147 147 'post:unmute': {} 148 + 'post:pin': {} 149 + 'post:unpin': {} 148 150 'profile:follow:sampled': { 149 151 didBecomeMutual: boolean | undefined 150 152 followeeClout: number | undefined
+2
src/view/com/util/forms/PostDropdownBtn.tsx
··· 22 22 import {makeProfileLink} from '#/lib/routes/links' 23 23 import {CommonNavigatorParams, NavigationProp} from '#/lib/routes/types' 24 24 import {shareUrl} from '#/lib/sharing' 25 + import {logEvent} from '#/lib/statsig/statsig' 25 26 import {richTextToString} from '#/lib/strings/rich-text-helpers' 26 27 import {toShareUrl} from '#/lib/strings/url-helpers' 27 28 import {useTheme} from '#/lib/ThemeContext' ··· 350 351 ]) 351 352 352 353 const onPressPin = useCallback(() => { 354 + logEvent(isPinned ? 'post:unpin' : 'post:pin', {}) 353 355 pinPostMutate({ 354 356 postUri, 355 357 postCid,