Commit 85b369b3 authored by Alex Kalderimis's avatar Alex Kalderimis

Merge branch 'kassio/phabricator-enabled-by-default' into 'master'

Enabled phabricator importer by default

See merge request gitlab-org/gitlab!56765
parents e2444c8f 38cfaacf
---
title: Enabled phabricator importer by default
merge_request: 56765
author:
type: added
......@@ -5,4 +5,4 @@ rollout_issue_url: https://gitlab.com/groups/gitlab-org/-/epics/1197
milestone: '12.0'
type: development
group: group::import
default_enabled: false
default_enabled: true
......@@ -36,13 +36,4 @@ of the project being imported into, then the user will be linked.
## Enabling this feature
While this feature is incomplete, a feature flag is required to enable it so that
we can gain early feedback before releasing it for everyone. To enable it:
1. Run the following command in a Rails console:
```ruby
Feature.enable(:phabricator_import)
```
1. Enable Phabricator as an [import source](../../admin_area/settings/visibility_and_access_controls.md#import-sources) in the Admin Area.
Enable Phabricator as an [import source](../../admin_area/settings/visibility_and_access_controls.md#import-sources) in the Admin Area.
......@@ -5,7 +5,7 @@ module Gitlab
BaseError = Class.new(StandardError)
def self.available?
Feature.enabled?(:phabricator_import) &&
Feature.enabled?(:phabricator_import, default_enabled: :yaml) &&
Gitlab::CurrentSettings.import_sources.include?('phabricator')
end
end
......
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