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 13:20:26 +01:00 committed by GitHub
parent c3b5046347
commit 9377ef9817
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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 {