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

analytics_summary_entity.rb « serializers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 57e9225e2dabdd42aa91164b62dc02c1af31bc9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

class AnalyticsSummaryEntity < Grape::Entity
  expose :value, safe: true
  expose :title
  expose :unit, if: { with_unit: true }

  private

  def value
    return object.value if object.value.is_a? String

    object.value&.nonzero? ? object.value.to_s : '-'
  end
end