13 lines
231 B
Ruby
13 lines
231 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class FeatureFlagScopeEntity < Grape::Entity
|
||
|
include RequestAwareEntity
|
||
|
|
||
|
expose :id
|
||
|
expose :active
|
||
|
expose :environment_scope
|
||
|
expose :created_at
|
||
|
expose :updated_at
|
||
|
expose :strategies
|
||
|
end
|