diff options
author | Paul Frazee <pfrazee@gmail.com> | 2024-06-24 16:03:32 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-24 16:03:32 -0700 |
commit | ed940c637edda3f7a39b2aefb242e30f8ad8c7ff (patch) | |
tree | bb19958e2cd64fd0c8ea11733998352ff768709d /src/lib/constants.ts | |
parent | 9e89ddeb1c6bd84594f5b9a9152cd0d9b974b9a8 (diff) | |
download | voidsky-ed940c637edda3f7a39b2aefb242e30f8ad8c7ff.tar.zst |
Set up the global 'joined this week' (#4625)
Diffstat (limited to 'src/lib/constants.ts')
-rw-r--r-- | src/lib/constants.ts | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/lib/constants.ts b/src/lib/constants.ts index e0b899800..0efaed44d 100644 --- a/src/lib/constants.ts +++ b/src/lib/constants.ts @@ -13,6 +13,15 @@ export const EMBED_SERVICE = 'https://embed.bsky.app' export const EMBED_SCRIPT = `${EMBED_SERVICE}/static/embed.js` export const BSKY_DOWNLOAD_URL = 'https://bsky.app/download' +// HACK +// Yes, this is exactly what it looks like. It's a hard-coded constant +// reflecting the number of new users in the last week. We don't have +// time to add a route to the servers for this so we're just going to hard +// code and update this number with each release until we can get the +// server route done. +// -prf +export const JOINED_THIS_WEEK = 37115 // as of June24 2024 + const BASE_FEEDBACK_FORM_URL = `${HELP_DESK_URL}/requests/new` export function FEEDBACK_FORM_URL({ email, |