debian-mirror-gitlab/lib/gitlab/template/metrics_dashboard_template.rb

32 lines
693 B
Ruby
Raw Normal View History

2020-10-24 23:57:45 +05:30
# frozen_string_literal: true
module Gitlab
module Template
class MetricsDashboardTemplate < BaseTemplate
2021-03-08 18:12:59 +05:30
def description
"# This file is a template, and might need editing before it works on your project."
2020-10-24 23:57:45 +05:30
end
class << self
def extension
'.metrics-dashboard.yml'
end
def categories
{
"General" => ''
}
end
def base_dir
Rails.root.join('lib/gitlab/metrics/templates')
end
def finder(project = nil)
Gitlab::Template::Finders::GlobalTemplateFinder.new(self.base_dir, self.extension, self.categories)
end
end
end
end
end