gitlab-org--gitlab-foss/app/finders/releases_finder.rb

15 lines
303 B
Ruby

# frozen_string_literal: true
class ReleasesFinder
def initialize(project, current_user = nil)
@project = project
@current_user = current_user
end
def execute
return Release.none unless Ability.allowed?(@current_user, :read_release, @project)
@project.releases.sorted
end
end