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

detailed_legacy_scope.rb « feature_flag « entities « api « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 47078c1dfde96557ad6c58c2022f65aaa7c9c1d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module API
  module Entities
    class FeatureFlag < Grape::Entity
      class DetailedLegacyScope < LegacyScope
        expose :name
      end
    end
  end
end