Welcome to mirror list, hosted at ThFree Co, Russian Federation.

defaults.rb « dashboard « metrics « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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