Commit 37e72fb4 authored by Martin Wortschack's avatar Martin Wortschack

Merge branch '276408-devops-adoption-feature-flag-documentation' into 'master'

Add DevOps Adoption feature flag to docs

See merge request gitlab-org/gitlab!49993
parents 87dfa4e0 5c7242b7
......@@ -59,3 +59,21 @@ DevOps Adoption allows you to:
- Find the groups that have adopted certain features and can provide guidance to other groups on how to use those features.
![DevOps Report](img/dev_ops_adoption_v13_7.png)
### Disable or enable DevOps Adoption
DevOps Adoption is deployed behind a feature flag that is **enabled by default**.
[GitLab administrators with access to the GitLab Rails console](../../../administration/feature_flags.md)
can opt to disable it.
To disable it:
```ruby
Feature.disable(:devops_adoption_feature)
```
To enable it:
```ruby
Feature.enable(:devops_adoption_feature)
```
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment