1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-26 22:41:17 +02:00

All: Added feature flags to disable Joplin Server sync optimisations by default, so that it still work with server 2.0

This commit is contained in:
Laurent Cozic
2021-06-19 14:22:53 +01:00
parent 7aff6d271d
commit 326fef486c
3 changed files with 19 additions and 3 deletions

View File

@@ -1242,6 +1242,21 @@ class Setting extends BaseModel {
appTypes: ['desktop'],
storage: SettingStorage.Database,
},
'featureFlag.syncAccurateTimestamps': {
value: false,
type: SettingItemType.Bool,
public: false,
storage: SettingStorage.File,
},
'featureFlag.syncMultiPut': {
value: false,
type: SettingItemType.Bool,
public: false,
storage: SettingStorage.File,
},
};
this.metadata_ = Object.assign(this.metadata_, this.customMetadata_);