feat: add auto-load profile pictures setting (#712)
This commit is contained in:
parent
ec03a49e32
commit
6dc662bd2b
28 changed files with 170 additions and 47 deletions
|
|
@ -34,6 +34,7 @@ export const StorageKey = {
|
|||
HIDE_CONTENT_MENTIONING_MUTED_USERS: 'hideContentMentioningMutedUsers',
|
||||
NOTIFICATION_LIST_STYLE: 'notificationListStyle',
|
||||
MEDIA_AUTO_LOAD_POLICY: 'mediaAutoLoadPolicy',
|
||||
PROFILE_PICTURE_AUTO_LOAD_POLICY: 'profilePictureAutoLoadPolicy',
|
||||
SHOWN_CREATE_WALLET_GUIDE_TOAST_PUBKEYS: 'shownCreateWalletGuideToastPubkeys',
|
||||
SIDEBAR_COLLAPSE: 'sidebarCollapse',
|
||||
PRIMARY_COLOR: 'primaryColor',
|
||||
|
|
@ -176,6 +177,12 @@ export const MEDIA_AUTO_LOAD_POLICY = {
|
|||
NEVER: 'never'
|
||||
} as const
|
||||
|
||||
export const PROFILE_PICTURE_AUTO_LOAD_POLICY = {
|
||||
ALWAYS: 'always',
|
||||
WIFI_ONLY: 'wifi-only',
|
||||
NEVER: 'never'
|
||||
} as const
|
||||
|
||||
export const NSFW_DISPLAY_POLICY = {
|
||||
HIDE: 'hide',
|
||||
HIDE_CONTENT: 'hide_content',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue