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

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

class FeatureFlagSerializer < BaseSerializer
  include WithPagination
  entity FeatureFlagEntity

  def represent(resource, opts = {})
    super(resource, opts)
  end
end