2021-01-03 14:25:43 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
module Entities
|
|
|
|
class FeatureFlag < Grape::Entity
|
|
|
|
class Strategy < Grape::Entity
|
2023-01-13 00:05:48 +05:30
|
|
|
expose :id, documentation: { type: 'integer', example: 1 }
|
|
|
|
expose :name, documentation: { type: 'string', example: 'userWithId' }
|
|
|
|
expose :parameters, documentation: { type: 'string', example: '{"userIds": "user1"}' }
|
2021-01-03 14:25:43 +05:30
|
|
|
expose :scopes, using: FeatureFlag::Scope
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|