Add vault name setting

This commit is contained in:
Andras Schmelczer 2024-12-17 21:07:14 +00:00
parent 728c4a5a28
commit d069cbdb67
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
3 changed files with 58 additions and 19 deletions

View file

@ -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,
};