Gate Backup Settings using a remote config

This commit is contained in:
Sasha Weiss 2025-10-20 08:50:45 -07:00 committed by GitHub
parent e1377c9aa9
commit 18e1ea5f45
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -42,8 +42,8 @@ public enum FeatureFlags {
public static let periodicallyCheckDatabaseIntegrity: Bool = false
public enum Backups {
public static let supported = build <= .beta
public static let showSettings = build <= .beta
public static let supported = true
public static let alwaysShowSettings = build <= .beta
public static let showMegaphones = build <= .internal
public static let showOptimizeMedia = build <= .dev

View File

@ -286,7 +286,7 @@ public class RemoteConfig {
}
public var allowBackupSettings: Bool {
if FeatureFlags.Backups.showSettings {
if FeatureFlags.Backups.alwaysShowSettings {
return true
}