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-02-05 18:09:28 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-02-05 18:09:28 +0300
commit4046c3447e0a01fe48e224e72e12b27859b92822 (patch)
tree63b8293134d5cc6030abc7a5d2aeb34a34f54925 /doc/user/discussions/index.md
parent64f7eb2b37aebbb713463b2f6971b13191c1b0db (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/user/discussions/index.md')
-rw-r--r--doc/user/discussions/index.md21
1 files changed, 11 insertions, 10 deletions
diff --git a/doc/user/discussions/index.md b/doc/user/discussions/index.md
index 7d0413a1f1b..7af701534d3 100644
--- a/doc/user/discussions/index.md
+++ b/doc/user/discussions/index.md
@@ -377,10 +377,11 @@ from any device you're logged into.
## Suggest Changes
> - [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/issues/18008) in GitLab 11.6.
-> - Custom commit messages for suggestions were [introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/25381) in GitLab 13.9.
-> - Custom commit messages for suggestions is disabled on GitLab.com and not recommended for production use.
+> - Custom commit messages for suggestions was [introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/25381) in GitLab 13.9.
> - Custom commit messages for suggestions was deployed behind a [feature flag](../feature_flags.md), disabled by default.
-> - To use custom commit messages for suggestions in GitLab self-managed instances, ask a GitLab administrator to [enable it](#enable-or-disable-custom-commit-messages-for-suggestions). **(FREE SELF)**
+> - Custom commit messages for suggestions became enabled by default on GitLab 13.9.
+> - Custom commit messages for suggestions is enabled on GitLab.com and is recommended for production use.
+> - For GitLab self-managed instances, GitLab administrators can opt to [disabled it](#enable-or-disable-custom-commit-messages-for-suggestions). **(FREE SELF)**
As a reviewer, you're able to suggest code changes with a simple
Markdown syntax in Merge Request Diff threads. Then, the
@@ -419,21 +420,21 @@ branch. [Developer permission](../permissions.md) is required to do so.
### Enable or disable Custom commit messages for suggestions **(FREE SELF)**
-Custom commit messages for suggestions is under development and not ready for production use. It is
-deployed behind a feature flag that is **disabled by default**.
+Custom commit messages for suggestions is under development but ready for production use. It 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 enable it.
+can opt to disable it.
-To enable custom commit messages for suggestions:
+To disable custom commit messages for suggestions:
```ruby
-Feature.enable(:suggestions_custom_commit)
+Feature.disable(:suggestions_custom_commit)
```
-To disable custom commit messages for suggestions:
+To enable custom commit messages for suggestions:
```ruby
-Feature.disable(:suggestions_custom_commit)
+Feature.enable(:suggestions_custom_commit)
```
### Multi-line Suggestions