feat: nostr.build

This commit is contained in:
2023-01-23 17:36:49 +00:00
parent d2ac231f89
commit 385b4479ae
7 changed files with 108 additions and 27 deletions

View File

@ -40,7 +40,12 @@ export interface UserPreferences {
/**
* Show debugging menus to help diagnose issues
*/
showDebugMenus: boolean
showDebugMenus: boolean,
/**
* File uploading service to upload attachments to
*/
fileUploader: "void.cat" | "nostr.build"
}
export interface LoginStore {
@ -117,7 +122,8 @@ const InitState = {
theme: "system",
confirmReposts: false,
showDebugMenus: false,
autoShowLatest: false
autoShowLatest: false,
fileUploader: "void.cat"
}
} as LoginStore;