Add encrypt-on-disk setting
This commit is contained in:
parent
87ab07bae0
commit
3291053256
1 changed files with 7 additions and 2 deletions
|
@ -43,9 +43,14 @@ message Account {
|
|||
|
||||
message TimestampedPreferences {
|
||||
EnableSync enable_sync = 1 [json_name="enable-sync"];
|
||||
Preferences local = 2;
|
||||
Preferences shared = 3;
|
||||
EncryptOnDisk encrypt_on_disk = 2 [json_name="encrypt-on-disk"];
|
||||
Preferences local = 3;
|
||||
Preferences shared = 4;
|
||||
|
||||
message EncryptOnDisk {
|
||||
uint32 ts = 1;
|
||||
bool value = 2;
|
||||
}
|
||||
message EnableSync {
|
||||
uint32 ts = 1;
|
||||
bool value = 2;
|
||||
|
|
Loading…
Reference in a new issue