summaryrefslogtreecommitdiff
path: root/lib/api/entities/feature_flag/scope.rb
blob: 906fe7182578271c7aa810a09d1c209104c27510 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

module API
  module Entities
    class FeatureFlag < Grape::Entity
      class Scope < Grape::Entity
        expose :id
        expose :environment_scope
      end
    end
  end
end