From 10fa5542b53ff7e08d95b81f8d0cf60a52f6a5c0 Mon Sep 17 00:00:00 2001
From: Mario Celi <mcelicalderon@gitlab.com>
Date: Thu, 11 Apr 2024 18:44:02 +0000
Subject: [PATCH] Enable moving issue children by default

When an issue is moved into another project
(copied and closed on source project), we will do the
same for tasks that might have been associated to the
issue

Changelog: changed
---
 config/feature_flags/beta/move_issue_children.yml | 2 +-
 doc/user/project/issues/managing_issues.md        | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/config/feature_flags/beta/move_issue_children.yml b/config/feature_flags/beta/move_issue_children.yml
index ea0bab52429e..f0506e0a13c0 100644
--- a/config/feature_flags/beta/move_issue_children.yml
+++ b/config/feature_flags/beta/move_issue_children.yml
@@ -6,4 +6,4 @@ rollout_issue_url: https://gitlab.com/gitlab-com/gl-infra/production/-/issues/17
 milestone: '16.9'
 group: group::project management
 type: beta
-default_enabled: false
+default_enabled: true
diff --git a/doc/user/project/issues/managing_issues.md b/doc/user/project/issues/managing_issues.md
index a27507a4143e..98ab8c08d90e 100644
--- a/doc/user/project/issues/managing_issues.md
+++ b/doc/user/project/issues/managing_issues.md
@@ -134,12 +134,12 @@ To move an issue:
 ### Moving tasks when the parent issue is moved
 
 > - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/371252) in GitLab 16.9 [with a flag](../../../administration/feature_flags.md) named `move_issue_children`. Disabled by default.
+> - [Enabled on GitLab.com and self-managed](https://gitlab.com/gitlab-org/gitlab/-/issues/371252) in GitLab 16.11.
 
 FLAG:
-On self-managed GitLab, by default this feature is not available. To make it available per project or for your entire instance,
-an administrator can [enable the feature flag](../../../administration/feature_flags.md) named `move_issue_children`.
-On GitLab.com and GitLab Dedicated, this feature is not available.
-This feature is not ready for production use.
+On self-managed GitLab, by default this feature is available. To hide the feature, an administrator can
+[disable the feature flag](../../../administration/feature_flags.md) named `move_issue_children`.
+On GitLab.com, this feature is available.
 
 When this feature is enabled, when you move an issue to another project, all its child tasks are also
 moved to the target project and remain associated as child tasks on the moved issue.
-- 
GitLab