debian-mirror-gitlab/lib/constraints/feature_constrainer.rb

14 lines
211 B
Ruby
Raw Normal View History

2018-11-08 19:23:39 +05:30
module Constraints
class FeatureConstrainer
attr_reader :feature
def initialize(feature)
@feature = feature
end
def matches?(_request)
Feature.enabled?(feature)
end
end
end