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: 9f4859e841034aae52f1ccc9dad506121f0f6fb0 (plain)
1
2
3
4
5
6
7
class AnalyticsGenericSerializer < BaseSerializer
  def represent(resource, opts = {})
    resource.symbolize_keys!

    super(resource, opts)
  end
end