-
Notifications
You must be signed in to change notification settings - Fork 16
Feature flags
Dmitry Degtyarev edited this page Feb 10, 2022
·
1 revision
- Find the list of all available feature flags look for the "Feature flags" section in
settings.h
. - Find the name of flag for the needed feature.
- Open ADMC.conf file stored in your configuration folder and add this line:
SETTING_feature_X=true
A feature may be ready on ADMC side but the server side may not implement it yet. This results in users seeing functionality and expecting it to work, when it doesn't. To avoid confusion around this, feature flags hide such features by default, but allow turning them back on without recompiling the app. This way, unfinished parts of the app can be both hidden from the users and available for testing, if necessary.