14 lines
454 B
Ruby
14 lines
454 B
Ruby
# frozen_string_literal: true
|
|
|
|
module API
|
|
module Entities
|
|
class FeatureFlag < Grape::Entity
|
|
class Strategy < Grape::Entity
|
|
expose :id, documentation: { type: 'integer', example: 1 }
|
|
expose :name, documentation: { type: 'string', example: 'userWithId' }
|
|
expose :parameters, documentation: { type: 'string', example: '{"userIds": "user1"}' }
|
|
expose :scopes, using: FeatureFlag::Scope
|
|
end
|
|
end
|
|
end
|
|
end
|