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

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

class FeatureFlagsClientSerializer < BaseSerializer
  entity FeatureFlagsClientEntity

  def represent_token(resource, opts = {})
    represent(resource, only: [:token])
  end
end