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: 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