Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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.rb14
1 files changed, 6 insertions, 8 deletions
diff --git a/lib/gitlab/github_import/importer/releases_importer.rb b/lib/gitlab/github_import/importer/releases_importer.rb
index a3734ccf069..c1fbd868800 100644
--- a/lib/gitlab/github_import/importer/releases_importer.rb
+++ b/lib/gitlab/github_import/importer/releases_importer.rb
@@ -6,15 +6,9 @@ module Gitlab
class ReleasesImporter
include BulkImporting
- attr_reader :project, :client, :existing_tags
-
- # project - An instance of `Project`
- # client - An instance of `Gitlab::GithubImport::Client`
# rubocop: disable CodeReuse/ActiveRecord
- def initialize(project, client)
- @project = project
- @client = client
- @existing_tags = project.releases.pluck(:tag).to_set
+ def existing_tags
+ @existing_tags ||= project.releases.pluck(:tag).to_set
end
# rubocop: enable CodeReuse/ActiveRecord
@@ -50,6 +44,10 @@ module Gitlab
def description_for(release)
release.body.presence || "Release for tag #{release.tag_name}"
end
+
+ def object_type
+ :release
+ end
end
end
end