Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2018-12-13 13:12:13 +0300
committerPhil Hughes <me@iamphill.com>2018-12-13 13:12:13 +0300
commit744f6ed12bf1ce543b4c903d27cfd8362e91795d (patch)
treeaea590d166e5610ddb5b030f7579343adba3dccf /lib/constraints
parent2bb468d6b91e164eb8144877015961fe40b2709f (diff)
Enable GraphQL API endpoint
Diffstat (limited to 'lib/constraints')
-rw-r--r--lib/constraints/feature_constrainer.rb8
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