summaryrefslogtreecommitdiff
path: root/lib/gitlab/metrics/dashboard/defaults.rb
blob: 3c39a7c6911adb0f71a937bb351de5844d6c5eff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 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'
        DEFAULT_PANEL_WEIGHT = 0
      end
    end
  end
end