mirror of
https://github.com/immich-app/immich.git
synced 2024-12-19 00:32:49 +02:00
c23b2479f7
let's the user configure how much to delay the trigger for running the backup whenever assets are changed on the device
36 lines
1.5 KiB
Dart
36 lines
1.5 KiB
Dart
// Access token
|
|
const String userInfoBox = "immichBoxUserInfo"; // Box
|
|
const String accessTokenKey = "immichBoxAccessTokenKey"; // Key 1
|
|
const String deviceIdKey = 'immichBoxDeviceIdKey'; // Key 2
|
|
const String isLoggedInKey = 'immichIsLoggedInKey'; // Key 3
|
|
const String serverEndpointKey = 'immichBoxServerEndpoint'; // Key 4
|
|
const String assetEtagKey = 'immichAssetEtagKey'; // Key 5
|
|
|
|
// Login Info
|
|
const String hiveLoginInfoBox = "immichLoginInfoBox"; // Box
|
|
const String savedLoginInfoKey = "immichSavedLoginInfoKey"; // Key 1
|
|
|
|
// Backup Info
|
|
const String hiveBackupInfoBox = "immichBackupAlbumInfoBox"; // Box
|
|
const String backupInfoKey = "immichBackupAlbumInfoKey"; // Key 1
|
|
|
|
// Github Release Info
|
|
const String hiveGithubReleaseInfoBox = "immichGithubReleaseInfoBox"; // Box
|
|
const String githubReleaseInfoKey = "immichGithubReleaseInfoKey"; // Key 1
|
|
|
|
// User Setting Info
|
|
const String userSettingInfoBox = "immichUserSettingInfoBox";
|
|
|
|
// Background backup Info
|
|
const String backgroundBackupInfoBox = "immichBackgroundBackupInfoBox"; // Box
|
|
const String backupFailedSince = "immichBackupFailedSince"; // Key 1
|
|
const String backupRequireWifi = "immichBackupRequireWifi"; // Key 2
|
|
const String backupRequireCharging = "immichBackupRequireCharging"; // Key 3
|
|
const String backupTriggerDelay = "immichBackupTriggerDelay"; // Key 4
|
|
|
|
// Duplicate asset
|
|
const String duplicatedAssetsBox = "immichDuplicatedAssetsBox"; // Box
|
|
const String duplicatedAssetsKey = "immichDuplicatedAssetsKey"; // Key 1
|
|
|
|
// In app logger
|
|
const String immichLoggerBox = "immichInAppLogger"; // Box |