35 lines
1 KiB
Ruby
35 lines
1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Template
|
|
class IssueTemplate < BaseTemplate
|
|
class << self
|
|
def extension
|
|
'.md'
|
|
end
|
|
|
|
def base_dir
|
|
'.gitlab/issue_templates/'
|
|
end
|
|
|
|
def finder(project)
|
|
Gitlab::Template::Finders::RepoTemplateFinder.new(project, self.base_dir, self.extension, self.categories)
|
|
end
|
|
|
|
def template_names(project)
|
|
return {} unless project&.repository&.exists?
|
|
|
|
# here we rely on project.repository caching mechanism. Ideally we would want the template finder to have its
|
|
# own caching mechanism to avoid the back and forth call jumps between finder and model.
|
|
#
|
|
# follow-up issue: https://gitlab.com/gitlab-org/gitlab/-/issues/300279
|
|
project.repository.issue_template_names_hash
|
|
end
|
|
|
|
def by_category(category, project = nil, empty_category_title: nil)
|
|
super(category, project, empty_category_title: _('Project Templates'))
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|