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-07-07 12:08:35 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-07-07 12:08:35 +0300
commit6b8af95df6c5702343c32ae266b0eb35e06d0546 (patch)
tree400c0cf36de7be6737ed18d537f8c74e69b604cd /doc/api/status_checks.md
parent7c33a59ac3b716b38baffbfe5c7f15e8104f3c6f (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/api/status_checks.md')
-rw-r--r--doc/api/status_checks.md39
1 files changed, 2 insertions, 37 deletions
diff --git a/doc/api/status_checks.md b/doc/api/status_checks.md
index 22f56ea191f..25ccd5d767a 100644
--- a/doc/api/status_checks.md
+++ b/doc/api/status_checks.md
@@ -7,14 +7,8 @@ type: reference, api
# External Status Checks API **(ULTIMATE)**
-> - [Introduced](https://gitlab.com/groups/gitlab-org/-/epics/3869) in GitLab 14.0.
-> - It's [deployed behind a feature flag](../user/feature_flags.md), disabled by default.
-> - It's disabled on GitLab.com.
-> - It's not recommended for production use.
-> - To use it in GitLab self-managed instances, ask a GitLab administrator to [enable it](#enable-or-disable-external-status-checks).
-
-WARNING:
-This feature might not be available to you. Check the **version history** note above for details.
+> - [Introduced](https://gitlab.com/groups/gitlab-org/-/epics/3869) in GitLab 14.0, disabled behind the `:ff_external_status_checks` feature flag.
+> - [Feature flag removed](https://gitlab.com/gitlab-org/gitlab/-/issues/320783) in GitLab 14.1.
## List status checks for a merge request
@@ -151,35 +145,6 @@ PUT /projects/:id/external_status_checks/:check_id
| `external_url` | string | no | URL of external status check resource |
| `protected_branch_ids` | `array<Integer>` | no | IDs of protected branches to scope the rule by |
-## Enable or disable external status checks **(ULTIMATE SELF)**
-
-External status checks are:
-
-- Under development.
-- Not ready for production use.
-
-The feature is deployed behind a feature flag that is **disabled by default**.
-[GitLab administrators with access to the GitLab Rails console](../user/feature_flags.md)
-can enable it.
-
-To enable it:
-
-```ruby
-# For the instance
-Feature.enable(:ff_external_status_checks)
-# For a single project
-Feature.enable(:ff_external_status_checks, Project.find(<project id>))
-```
-
-To disable it:
-
-```ruby
-# For the instance
-Feature.disable(:ff_external_status_checks)
-# For a single project
-Feature.disable(:ff_external_status_checks, Project.find(<project id>))
-```
-
## Related links
- [External status checks](../user/project/merge_requests/status_checks.md).