debian-mirror-gitlab/lib/constraints/feature_constrainer.rb
2018-12-13 13:39:08 +05:30

16 lines
242 B
Ruby

# frozen_string_literal: true
module Constraints
class FeatureConstrainer
attr_reader :feature
def initialize(feature)
@feature = feature
end
def matches?(_request)
Feature.enabled?(feature)
end
end
end