Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit cf339151 authored by Wolf-Martell Montwé's avatar Wolf-Martell Montwé Committed by GitHub
Browse files

Merge pull request #9959 from rafaeltonholo/chore/turn-off-in-app-notification-on-beta

chore: turn off in-app notification feature flag for beta
parents fcbf3332 bc58691b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -15,8 +15,8 @@ class K9FeatureFlagFactory : FeatureFlagFactory {
            FeatureFlag("email_notification_default".toFeatureFlagKey(), enabled = true),
            FeatureFlag("enable_dropdown_drawer".toFeatureFlagKey(), enabled = true),
            FeatureFlag("enable_dropdown_drawer_ui".toFeatureFlagKey(), enabled = true),
            FeatureFlag(FeatureFlagKey.DisplayInAppNotifications, enabled = true),
            FeatureFlag(FeatureFlagKey.UseNotificationSenderForSystemNotifications, enabled = true),
            FeatureFlag(FeatureFlagKey.DisplayInAppNotifications, enabled = false),
            FeatureFlag(FeatureFlagKey.UseNotificationSenderForSystemNotifications, enabled = false),
            FeatureFlag(MessageListFeatureFlags.UseComposeForMessageListItems, enabled = false),
        )
    }
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ class TbFeatureFlagFactory : FeatureFlagFactory {
            FeatureFlag("email_notification_default".toFeatureFlagKey(), enabled = true),
            FeatureFlag("enable_dropdown_drawer".toFeatureFlagKey(), enabled = true),
            FeatureFlag("enable_dropdown_drawer_ui".toFeatureFlagKey(), enabled = true),
            FeatureFlag(FeatureFlagKey.DisplayInAppNotifications, enabled = true),
            FeatureFlag(FeatureFlagKey.DisplayInAppNotifications, enabled = false),
            FeatureFlag(FeatureFlagKey.UseNotificationSenderForSystemNotifications, enabled = false),
            FeatureFlag(MessageListFeatureFlags.UseComposeForMessageListItems, enabled = false),
        )
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ class TbFeatureFlagFactory : FeatureFlagFactory {
            FeatureFlag("enable_dropdown_drawer".toFeatureFlagKey(), enabled = true),
            FeatureFlag("enable_dropdown_drawer_ui".toFeatureFlagKey(), enabled = true),
            FeatureFlag(FeatureFlagKey.DisplayInAppNotifications, enabled = true),
            FeatureFlag(FeatureFlagKey.UseNotificationSenderForSystemNotifications, enabled = true),
            FeatureFlag(FeatureFlagKey.UseNotificationSenderForSystemNotifications, enabled = false),
            FeatureFlag(MessageListFeatureFlags.UseComposeForMessageListItems, enabled = false),
        )
    }