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

analytics_generic_serializer.rb « serializers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 10391c130347f4a107e94a16840e67b8d9efe048 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AnalyticsGenericSerializer < BaseSerializer
  def represent(resource, opts = {})
    resource.symbolize_keys!

    super(resource, opts)
  end
end