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

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: 7329f71c5990a2a3f6dff30ba083111038dec2f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

module API
  module Entities
    class FeatureFlag < Grape::Entity
      class LegacyScope < Grape::Entity
        expose :id
        expose :active
        expose :environment_scope
        expose :strategies
        expose :created_at
        expose :updated_at
      end
    end
  end
end