Add vault name setting
This commit is contained in:
parent
728c4a5a28
commit
d069cbdb67
3 changed files with 58 additions and 19 deletions
|
|
@ -1,6 +1,7 @@
|
|||
export interface SyncSettings {
|
||||
remoteUri: string;
|
||||
token: string;
|
||||
vaultName: string;
|
||||
fetchChangesUpdateIntervalMs: number;
|
||||
isSyncEnabled: boolean;
|
||||
}
|
||||
|
|
@ -8,6 +9,7 @@ export interface SyncSettings {
|
|||
export const DEFAULT_SETTINGS: SyncSettings = {
|
||||
remoteUri: "",
|
||||
token: "",
|
||||
vaultName: "default",
|
||||
fetchChangesUpdateIntervalMs: 1000,
|
||||
isSyncEnabled: true,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue