2019-02-15 15:39:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ReleasesFinder
|
|
|
|
def initialize(project, current_user = nil)
|
|
|
|
@project = project
|
|
|
|
@current_user = current_user
|
|
|
|
end
|
|
|
|
|
2019-12-26 22:10:19 +05:30
|
|
|
def execute(preload: true)
|
2019-02-15 15:39:39 +05:30
|
|
|
return Release.none unless Ability.allowed?(@current_user, :read_release, @project)
|
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
# See https://gitlab.com/gitlab-org/gitlab/-/issues/211988
|
|
|
|
releases = @project.releases.where.not(tag: nil) # rubocop:disable CodeReuse/ActiveRecord
|
2019-12-26 22:10:19 +05:30
|
|
|
releases = releases.preloaded if preload
|
|
|
|
releases.sorted
|
2019-02-15 15:39:39 +05:30
|
|
|
end
|
|
|
|
end
|