Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-06-22 12:07:12 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-06-22 12:07:12 +0300
commitc76417338ee60071aa41cf292e2c189bd5aa839e (patch)
tree57b80a2cc5740b3a724f47fa881cd75b40679ef5 /doc/api/status_checks.md
parentbe3e27e39dd5c1a72fd4c296858322748db53a26 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/api/status_checks.md')
-rw-r--r--doc/api/status_checks.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/api/status_checks.md b/doc/api/status_checks.md
index 75be51f5606..e41d2b1bb1f 100644
--- a/doc/api/status_checks.md
+++ b/doc/api/status_checks.md
@@ -161,18 +161,18 @@ To enable it:
```ruby
# For the instance
-Feature.enable(:ff_compliance_approval_gates)
+Feature.enable(:ff_external_status_checks)
# For a single project
-Feature.enable(:ff_compliance_approval_gates, Project.find(<project id>))
+Feature.enable(:ff_external_status_checks, Project.find(<project id>))
```
To disable it:
```ruby
# For the instance
-Feature.disable(:ff_compliance_approval_gates)
+Feature.disable(:ff_external_status_checks)
# For a single project
-Feature.disable(:ff_compliance_approval_gates, Project.find(<project id>))
+Feature.disable(:ff_external_status_checks, Project.find(<project id>))
```
## Related links