refactor: use feature toggle

This commit is contained in:
idubnori
2025-10-23 14:25:56 +09:00
parent 0ec00cf138
commit ff76370abb
5 changed files with 102 additions and 1 deletions
+2 -1
View File
@@ -81,7 +81,8 @@ enum StoreKey<T> {
useWifiForUploadPhotos<bool>._(1005),
needBetaMigration<bool>._(1006),
// TODO: Remove this after patching open-api
shouldResetSync<bool>._(1007);
shouldResetSync<bool>._(1007),
betaActivitiesStyle<bool>._(1008);
const StoreKey._(this.id);
final int id;