mirror of
https://github.com/immich-app/immich.git
synced 2024-12-20 00:38:24 +02:00
30f069a5db
* Refactor profile drawer to sub component * Added setting page, routing with some options * Added setting service * Implement three stage settings * get app setting for three stage loading
22 lines
882 B
Dart
22 lines
882 B
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";
|