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

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

module FeatureFlags
  class ScopeEntity < Grape::Entity
    expose :id
    expose :environment_scope
  end
end