13 lines
274 B
Ruby
13 lines
274 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Gitlab
|
||
|
module PhabricatorImport
|
||
|
BaseError = Class.new(StandardError)
|
||
|
|
||
|
def self.available?
|
||
|
Feature.enabled?(:phabricator_import) &&
|
||
|
Gitlab::CurrentSettings.import_sources.include?('phabricator')
|
||
|
end
|
||
|
end
|
||
|
end
|