14 lines
303 B
Ruby
14 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
|