summaryrefslogtreecommitdiff
path: root/lib/gitlab/metrics/dashboard/defaults.rb
blob: 6a5f98a18c8aa28ad95fb9989b6194be64b20e72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

# Central point for managing default attributes from within
# the metrics dashboard module.
module Gitlab
  module Metrics
    module Dashboard
      module Defaults
        DEFAULT_PANEL_TYPE = 'area-chart'
      end
    end
  end
end