gitlab-org--gitlab-foss/lib/gitlab/search/recent_issues.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
219 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
module Gitlab
module Search
class RecentIssues < RecentItems
private
def type
Issue
end
def finder
IssuesFinder
end
end
end
end