Files
Auto-GPT/frontend/lib/utils/feature_flags.dart
hunteraraujo bec207568a Add userExperienceIterationTwo feature flag utility
Added a FeatureFlags utility class to manage feature toggling within the application. This initial commit introduces a flag for the userExperienceIterationTwo feature, allowing for controlled testing and phased rollout as development progresses. The flag can be manually adjusted as needed.
2023-09-25 19:30:26 -07:00

4 lines
86 B
Dart

class FeatureFlags {
static const bool userExperienceIterationTwoEnabled = false;
}