summaryrefslogtreecommitdiff
path: root/lib/gitlab/github_import/importer/releases_importer.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/github_import/importer/releases_importer.rb')
-rw-r--r--lib/gitlab/github_import/importer/releases_importer.rb9
1 files changed, 2 insertions, 7 deletions
diff --git a/lib/gitlab/github_import/importer/releases_importer.rb b/lib/gitlab/github_import/importer/releases_importer.rb
index 7241e1ef703..51d364772d2 100644
--- a/lib/gitlab/github_import/importer/releases_importer.rb
+++ b/lib/gitlab/github_import/importer/releases_importer.rb
@@ -27,9 +27,10 @@ module Gitlab
def build(release)
existing_tags.add(release.tag_name)
- build_hash = {
+ {
name: release.name,
tag: release.tag_name,
+ author_id: fetch_author_id(release),
description: description_for(release),
created_at: release.created_at,
updated_at: release.created_at,
@@ -37,12 +38,6 @@ module Gitlab
released_at: release.published_at || Time.current,
project_id: project.id
}
-
- if Feature.enabled?(:import_release_authors_from_github, project)
- build_hash[:author_id] = fetch_author_id(release)
- end
-
- build_hash
end
def each_release