9b65d4bb41
- All definitions have been replaced by classes: http://graphql-ruby.org/schema/class_based_api.html - Authorization & Presentation have been refactored to work in the class based system - Loaders have been replaced by resolvers - Times are now coersed as ISO 8601
13 lines
211 B
Ruby
13 lines
211 B
Ruby
module Constraints
|
|
class FeatureConstrainer
|
|
attr_reader :feature
|
|
|
|
def initialize(feature)
|
|
@feature = feature
|
|
end
|
|
|
|
def matches?(_request)
|
|
Feature.enabled?(feature)
|
|
end
|
|
end
|
|
end
|