feature_flags: Do not enable feature flags by default in dev builds (#27065)

Closes #ISSUE

Release Notes:

- N/A
This commit is contained in:
Piotr Osiewicz
2025-03-19 12:20:26 +00:00
committed by GitHub
parent c3b5046347
commit 9377ef9817
+1 -1
View File
@@ -207,7 +207,7 @@ impl FeatureFlagAppExt for App {
fn has_flag<T: FeatureFlag>(&self) -> bool {
self.try_global::<FeatureFlags>()
.map(|flags| flags.has_flag::<T>())
.unwrap_or_else(|| T::enabled_in_development())
.unwrap_or(false)
}
fn is_staff(&self) -> bool {