diff options
author | Eric Bailey <git@esb.lol> | 2025-06-25 21:32:51 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-25 21:32:51 -0500 |
commit | 92ffe66ae12df05370ddd44d37c23de3daa85775 (patch) | |
tree | 04c4b866d287b1ce926d39a5e098a20514085f94 /src/lib/constants.ts | |
parent | bb760400feaf4bab668fc2532a4de64e6833200a (diff) | |
download | voidsky-92ffe66ae12df05370ddd44d37c23de3daa85775.tar.zst |
Notifications registration (#8564)
* Formatting nits * Debounce push token registration by 100ms * Comment * Align handling across native devices * Clean up * Simplify * Use hooks * Update import * Comment * Put app view DIDs in constants * Clarify comment
Diffstat (limited to 'src/lib/constants.ts')
-rw-r--r-- | src/lib/constants.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/constants.ts b/src/lib/constants.ts index dca03647a..a21b92de5 100644 --- a/src/lib/constants.ts +++ b/src/lib/constants.ts @@ -201,3 +201,6 @@ export const urls = { }, }, } + +export const PUBLIC_APPVIEW_DID = 'did:web:api.bsky.app' +export const PUBLIC_STAGING_APPVIEW_DID = 'did:web:api.staging.bsky.dev' |