From 2e8d0153cd6bed87fa55255ef11fda7152b2bcaf Mon Sep 17 00:00:00 2001 From: Bob Van Landuyt Date: Fri, 14 Dec 2018 14:27:26 +0100 Subject: Pass on arguments passed to the FeatureConstrainer All arguments passed to the `FeatureConstrainer` will be passed on to the `Feature.enabled?` check. --- lib/constraints/feature_constrainer.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/constraints') diff --git a/lib/constraints/feature_constrainer.rb b/lib/constraints/feature_constrainer.rb index 5f8d97c8cdc..cd246cf37a4 100644 --- a/lib/constraints/feature_constrainer.rb +++ b/lib/constraints/feature_constrainer.rb @@ -2,14 +2,14 @@ module Constraints class FeatureConstrainer - attr_reader :feature, :thing, :default_enabled + attr_reader :args - def initialize(feature, thing, default_enabled) - @feature, @thing, @default_enabled = feature, thing, default_enabled + def initialize(*args) + @args = args end def matches?(_request) - Feature.enabled?(feature, @thing, default_enabled: true) + Feature.enabled?(*args) end end end -- cgit v1.2.3