Commit 83f5543c authored by Nick Thomas's avatar Nick Thomas

Merge branch '321387-enable-fork-project-form' into 'master'

Turn fork_project_form feature flag default on

See merge request gitlab-org/gitlab!64967
parents f5a67298 6667b13d
...@@ -17,7 +17,7 @@ class Projects::ForksController < Projects::ApplicationController ...@@ -17,7 +17,7 @@ class Projects::ForksController < Projects::ApplicationController
feature_category :source_code_management feature_category :source_code_management
before_action do before_action do
push_frontend_feature_flag(:fork_project_form) push_frontend_feature_flag(:fork_project_form, @project, default_enabled: :yaml)
end end
def index def index
......
- page_title s_("ForkProject|Fork project") - page_title s_("ForkProject|Fork project")
- if Feature.enabled?(:fork_project_form) - if Feature.enabled?(:fork_project_form, @project, default_enabled: :yaml)
#fork-groups-mount-element{ data: { fork_illustration: image_path('illustrations/project-create-new-sm.svg'), #fork-groups-mount-element{ data: { fork_illustration: image_path('illustrations/project-create-new-sm.svg'),
endpoint: new_project_fork_path(@project, format: :json), endpoint: new_project_fork_path(@project, format: :json),
new_group_path: new_group_path, new_group_path: new_group_path,
......
...@@ -5,4 +5,4 @@ rollout_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/321387 ...@@ -5,4 +5,4 @@ rollout_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/321387
milestone: '13.10' milestone: '13.10'
type: development type: development
group: group::source code group: group::source code
default_enabled: false default_enabled: true
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