about summary refs log tree commit diff
path: root/src/lib
diff options
context:
space:
mode:
authorHailey <me@haileyok.com>2025-01-17 12:19:16 -0800
committerGitHub <noreply@github.com>2025-01-17 12:19:16 -0800
commit6f3f11671d526c5d9a454c46f6daf305b588ef4c (patch)
tree972f05af4b3f2fc801ecc7c8e038e6adac7081e9 /src/lib
parentec9cafdbbd476228b7ead5360c792c7d37cc5660 (diff)
downloadvoidsky-6f3f11671d526c5d9a454c46f6daf305b588ef4c.tar.zst
tweaks to constants (#7478)
* add did

* use correct did

* typo

* tweak
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/constants.ts15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/lib/constants.ts b/src/lib/constants.ts
index 566edf69d..5ae000f72 100644
--- a/src/lib/constants.ts
+++ b/src/lib/constants.ts
@@ -63,6 +63,21 @@ export function IS_PROD_SERVICE(url?: string) {
 export const PROD_DEFAULT_FEED = (rkey: string) =>
   `at://did:plc:z72i7hdynmk6r22z27h6tvur/app.bsky.feed.generator/${rkey}`
 
+export const STAGING_DEFAULT_FEED = (rkey: string) =>
+  `at://did:plc:yofh3kx63drvfljkibw5zuxo/app.bsky.feed.generator/${rkey}`
+
+export const PROD_FEEDS = [
+  `feedgen|${PROD_DEFAULT_FEED('whats-hot')}`,
+  `feedgen|${PROD_DEFAULT_FEED('thevids')}`,
+]
+
+export const STAGING_FEEDS = [
+  `feedgen|${STAGING_DEFAULT_FEED('whats-hot')}`,
+  `feedgen|${STAGING_DEFAULT_FEED('thevids')}`,
+]
+
+export const FEEDBACK_FEEDS = [...PROD_FEEDS, ...STAGING_FEEDS]
+
 export const POST_IMG_MAX = {
   width: 2000,
   height: 2000,