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

13 lines
225 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)
by_search(tags)
end
end