mirror of
				https://github.com/KevinMidboe/immich.git
				synced 2025-10-29 17:40:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			1.3 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
 | |
| 
 | |
| // 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
 | |
| 
 | |
| // Duplicate asset
 | |
| const String duplicatedAssetsBox = "immichDuplicatedAssetsBox"; // Box
 | |
| const String duplicatedAssetsKey = "immichDuplicatedAssetsKey"; // Key 1
 |