diff options
author | Evan Read <eread@gitlab.com> | 2018-10-23 23:38:17 +0000 |
---|---|---|
committer | Evan Read <eread@gitlab.com> | 2018-10-23 23:38:17 +0000 |
commit | 567c6b10aadc7149a89d047c4b7c739db0769d20 (patch) | |
tree | 031a9c2f6ae215a1177abfe490f52632d061e5e3 | |
parent | e8a43e77d9d9015a25cf1b0824c77dde326ed9fe (diff) | |
parent | d240364398b5c74ef95b7516d3b4967755582a3a (diff) | |
download | gitlab-ce-567c6b10aadc7149a89d047c4b7c739db0769d20.tar.gz |
Merge branch 'docs-enable-feature-flag' into 'master'
Add instructions on how to enable a feature flag
Closes gitlab-org/release/framework#23
See merge request gitlab-org/gitlab-ce!22518
-rw-r--r-- | doc/development/feature_flags.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/development/feature_flags.md b/doc/development/feature_flags.md index 0f1f079bdb4..350593cc813 100644 --- a/doc/development/feature_flags.md +++ b/doc/development/feature_flags.md @@ -112,3 +112,8 @@ feature flag. You can stub a feature flag as follows: ```ruby stub_feature_flags(my_feature_flag: false) ``` + +## Enabling a feature flag + +Check how to [roll out changes using feature flags](rolling_out_changes_using_feature_flags.md). + |