summaryrefslogtreecommitdiff
path: root/doc/development/feature_flags.md
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2017-07-05 21:55:27 +0200
committerRémy Coutable <remy@rymai.me>2017-07-06 11:18:26 +0200
commite5a7d1da8cfda5dc3755b6a0a1ed450415f39873 (patch)
tree409af2c78ed74fa045562f92bc3c17a045519c72 /doc/development/feature_flags.md
parent00ac76cc4ce87954d770abae411c54eb8bf23360 (diff)
downloadgitlab-ce-e5a7d1da8cfda5dc3755b6a0a1ed450415f39873.tar.gz
Improve Features API and its docs and add a Changelog item
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'doc/development/feature_flags.md')
-rw-r--r--doc/development/feature_flags.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/development/feature_flags.md b/doc/development/feature_flags.md
index cf9636eb6f6..a51adcfbd3f 100644
--- a/doc/development/feature_flags.md
+++ b/doc/development/feature_flags.md
@@ -13,7 +13,8 @@ During runtime you can set the values for the gates via the
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
+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.