CONFIG.defaultPreferences.checkSigs

This commit is contained in:
Martti Malmi 2023-12-08 18:30:52 +02:00
parent bee8498283
commit 4d6331ce81
4 changed files with 10 additions and 1 deletions

View File

@ -21,6 +21,9 @@
"signUp": {
"moderation": true
},
"defaultPreferences": {
"checkSigs": false
},
"noteCreatorToast": true,
"hideFromNavbar": ["/graph"],
"deckSubKind": 1,

View File

@ -21,6 +21,9 @@
"signUp": {
"moderation": false
},
"defaultPreferences": {
"checkSigs": true
},
"hideFromNavbar": [],
"eventLinkPrefix": "note",
"profileLinkPrefix": "npub",

View File

@ -59,6 +59,9 @@ declare const CONFIG: {
deck: boolean;
zapPool: boolean;
};
defaultPreferences: {
checkSigs: boolean;
}
signUp: {
moderation: boolean;
};

View File

@ -114,6 +114,6 @@ export const DefaultPreferences = {
telemetry: true,
showBadges: false,
showStatus: true,
checkSigs: false,
checkSigs: CONFIG.defaultPreferences.checkSigs,
autoTranslate: true,
} as UserPreferences;