Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
ed1849e1
Commit
ed1849e1
authored
Aug 26, 2021
by
Kassio Borges
Committed by
George Koltsov
Aug 30, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enable bulk_import feature flag by default
Changelog: changed
parent
f9cf18c8
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
app/controllers/import/bulk_imports_controller.rb
app/controllers/import/bulk_imports_controller.rb
+1
-1
app/views/groups/new.html.haml
app/views/groups/new.html.haml
+1
-1
config/feature_flags/development/bulk_import.yml
config/feature_flags/development/bulk_import.yml
+1
-1
doc/user/group/import/index.md
doc/user/group/import/index.md
+1
-1
No files found.
app/controllers/import/bulk_imports_controller.rb
View file @
ed1849e1
...
...
@@ -112,7 +112,7 @@ class Import::BulkImportsController < ApplicationController
end
def
ensure_group_import_enabled
render_404
unless
Feature
.
enabled?
(
:bulk_import
)
render_404
unless
Feature
.
enabled?
(
:bulk_import
,
default_enabled: :yaml
)
end
def
access_token_key
...
...
app/views/groups/new.html.haml
View file @
ed1849e1
...
...
@@ -15,7 +15,7 @@
#import-group-pane
.tab-pane
-
if
import_sources_enabled?
-
if
Feature
.
enabled?
(
:bulk_import
)
-
if
Feature
.
enabled?
(
:bulk_import
,
default_enabled: :yaml
)
=
render
'import_group_from_another_instance_panel'
.gl-mt-7.gl-border-b-solid.gl-border-gray-100.gl-border-1
=
render
'import_group_from_file_panel'
...
...
config/feature_flags/development/bulk_import.yml
View file @
ed1849e1
...
...
@@ -5,4 +5,4 @@ rollout_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/255310
milestone
:
'
13.5'
type
:
development
group
:
group::import
default_enabled
:
fals
e
default_enabled
:
tru
e
doc/user/group/import/index.md
View file @
ed1849e1
...
...
@@ -77,7 +77,7 @@ Any other items are **not** migrated.
## Enable or disable GitLab Group Migration
GitLab Migration is deployed behind a feature flag that is
**
dis
abled by default**
.
GitLab Migration is deployed behind a feature flag that is
**
en
abled by default**
.
[
GitLab administrators with access to the GitLab Rails console
](
../../../administration/feature_flags.md
)
can enable it.
To enable it:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment