1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-29 22:48:10 +02:00

Linux: Move keychain support behind an off-by-default feature flag (#11227)

This commit is contained in:
Henry Heino
2024-10-17 14:58:03 -07:00
committed by GitHub
parent 2c40cec639
commit 41b251d67a
3 changed files with 34 additions and 3 deletions

View File

@@ -1576,6 +1576,20 @@ const builtInMetadata = (Setting: typeof SettingType) => {
isGlobal: true,
},
'featureFlag.linuxKeychain': {
value: false,
type: SettingItemType.Bool,
public: true,
storage: SettingStorage.File,
appTypes: [AppType.Desktop],
label: () => 'Enable keychain support',
description: () => 'This is an experimental setting to enable keychain support on Linux',
show: () => shim.isLinux(),
section: 'general',
isGlobal: true,
advanced: true,
},
// 'featureFlag.syncAccurateTimestamps': {
// value: false,