Merge branch 'main' into new-ui

This commit is contained in:
Alejandro Gomez
2023-01-29 23:15:22 +01:00
9 changed files with 112 additions and 28 deletions

View File

@ -48,7 +48,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 {
@ -149,7 +154,8 @@ const InitState = {
theme: "system",
confirmReposts: false,
showDebugMenus: false,
autoShowLatest: false
autoShowLatest: false,
fileUploader: "void.cat"
}
} as LoginStore;