diff options
author | Eric Bailey <git@esb.lol> | 2025-08-06 15:16:08 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-06 15:16:08 -0500 |
commit | 75094f48603e120605642e20e1048d839be23788 (patch) | |
tree | e3322725ffb54743fdda7dbc0398bcdc593912b7 /src/lib | |
parent | 328aa2be9482f77cb1cf86c5d227fdcee9981b16 (diff) | |
download | voidsky-75094f48603e120605642e20e1048d839be23788.tar.zst |
[LEG-203] Add onboarding text for policy updates (#8783)
* Add onboarding text for policy updates * Add gate, add to other case * Update other UI cases to use Admonitions * Th * Update date
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/constants.ts | 7 | ||||
-rw-r--r-- | src/lib/statsig/gates.ts | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/lib/constants.ts b/src/lib/constants.ts index 3f0d49989..ab52b8710 100644 --- a/src/lib/constants.ts +++ b/src/lib/constants.ts @@ -207,3 +207,10 @@ export const PUBLIC_APPVIEW_DID = 'did:web:api.bsky.app' export const PUBLIC_STAGING_APPVIEW_DID = 'did:web:api.staging.bsky.dev' export const DEV_ENV_APPVIEW = `http://localhost:2584` // always the same + +export const webLinks = { + tos: `https://bsky.social/about/support/tos`, + privacy: `https://bsky.social/about/support/privacy-policy`, + community: `https://bsky.social/about/support/community-guidelines`, + communityDeprecated: `https://bsky.social/about/support/community-guidelines-deprecated`, +} diff --git a/src/lib/statsig/gates.ts b/src/lib/statsig/gates.ts index 3b1106480..c3bd1a7cb 100644 --- a/src/lib/statsig/gates.ts +++ b/src/lib/statsig/gates.ts @@ -3,6 +3,7 @@ export type Gate = | 'alt_share_icon' | 'debug_show_feedcontext' | 'debug_subscriptions' + | 'disable_onboarding_policy_update_notice' | 'explore_show_suggested_feeds' | 'old_postonboarding' | 'onboarding_add_video_feed' |