14 lines
267 B
Ruby
14 lines
267 B
Ruby
|
# 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
|