Skip to content

Feature flags

Dmitry Degtyarev edited this page Feb 10, 2022 · 1 revision

How

  1. Find the list of all available feature flags look for the "Feature flags" section in settings.h.
  2. Find the name of flag for the needed feature.
  3. Open ADMC.conf file stored in your configuration folder and add this line:
SETTING_feature_X=true

Why

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.

Clone this wiki locally