summaryrefslogtreecommitdiff
path: root/app/serializers/analytics_summary_entity.rb
blob: 91803ec07f5ffd2cd2d5a156f4df237068b93d05 (plain)
1
2
3
4
5
6
7
class AnalyticsSummaryEntity < Grape::Entity
  expose :value, safe: true

  expose :title do |object|
    object.title.pluralize(object.value)
  end
end