diff options
author | Rémy Coutable <remy@rymai.me> | 2017-06-29 18:53:57 +0200 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2017-07-06 11:18:25 +0200 |
commit | c8ce1f0d5d5908351fd8a0e60c00e67c1be25ed9 (patch) | |
tree | 8fd6fec1a4ac7b165bbffaf7bfccf02fba233213 /doc/development/feature_flags.md | |
parent | 53af1eb7e984ad9a03bdb0957e91f4bd0d43b9e0 (diff) | |
download | gitlab-ce-c8ce1f0d5d5908351fd8a0e60c00e67c1be25ed9.tar.gz |
Document the feature groups
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'doc/development/feature_flags.md')
-rw-r--r-- | doc/development/feature_flags.md | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/doc/development/feature_flags.md b/doc/development/feature_flags.md index 5c6316b9ac6..cf9636eb6f6 100644 --- a/doc/development/feature_flags.md +++ b/doc/development/feature_flags.md @@ -3,5 +3,19 @@ Starting from GitLab 9.3 we support feature flags via [Flipper](https://github.com/jnunemaker/flipper/). You should use the `Feature` class (defined in `lib/feature.rb`) in your code to get, set and list feature -flags. During runtime you can set the values for the gates via the -[admin API](../api/features.md). +flags. + +During runtime you can set the values for the gates via the +[features API](../api/features.md) (accessible to admins only). + +## Feature groups + +Starting from GitLab 9.4 we support feature groups via +[Flipper groups](https://github.com/jnunemaker/flipper/blob/v0.10.2/docs/Gates.md#2-group). + +Feature groups must be defined statically in `lib/feature.rb` (in the `.register_feature_groups` method), but their implementation can obviously be +dynamic (querying the DB etc.). You can see how the `performance_team` feature +group for a concrete example. + +Once defined in `lib/feature.rb`, you will be able to activate a +feature for a given feature group via the [`feature_group` param of the features API](../api/features.md#set-or-create-a-feature) |