diff options
Diffstat (limited to 'lib/constraints/feature_constrainer.rb')
-rw-r--r-- | lib/constraints/feature_constrainer.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/constraints/feature_constrainer.rb b/lib/constraints/feature_constrainer.rb index ca4376a9d38..5f8d97c8cdc 100644 --- a/lib/constraints/feature_constrainer.rb +++ b/lib/constraints/feature_constrainer.rb @@ -2,14 +2,14 @@ module Constraints class FeatureConstrainer - attr_reader :feature + attr_reader :feature, :thing, :default_enabled - def initialize(feature) - @feature = feature + def initialize(feature, thing, default_enabled) + @feature, @thing, @default_enabled = feature, thing, default_enabled end def matches?(_request) - Feature.enabled?(feature) + Feature.enabled?(feature, @thing, default_enabled: true) end end end |