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

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

module API
  module Entities
    module Unleash
      class ClientFeatureFlags < Grape::Entity
        expose :unleash_api_version, as: :version
        expose :unleash_api_features, as: :features, using: ::API::Entities::UnleashFeature
      end
    end
  end
end