12 lines
213 B
Ruby
12 lines
213 B
Ruby
# 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
|