summaryrefslogtreecommitdiff
path: root/lib/gitlab/github_import/sequential_importer.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/github_import/sequential_importer.rb')
-rw-r--r--lib/gitlab/github_import/sequential_importer.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/gitlab/github_import/sequential_importer.rb b/lib/gitlab/github_import/sequential_importer.rb
index 6a181caf65d..cb6b2017208 100644
--- a/lib/gitlab/github_import/sequential_importer.rb
+++ b/lib/gitlab/github_import/sequential_importer.rb
@@ -25,10 +25,11 @@ module Gitlab
# project - The project to import the data into.
# token - The token to use for the GitHub API.
- def initialize(project, token: nil)
+ # host - The GitHub hostname. If nil, github.com will be used.
+ def initialize(project, token: nil, host: nil)
@project = project
@client = GithubImport
- .new_client_for(project, token: token, parallel: false)
+ .new_client_for(project, token: token, host: host, parallel: false)
end
def execute