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

14 lines
241 B
Ruby

# frozen_string_literal: true
class TagsFinder < GitRefsFinder
def initialize(repository, params)
super(repository, params)
end
def execute
tags = repository.tags_sorted_by(sort)
tags = by_search(tags)
tags
end
end