rack-attack/lib/rack/attack/safelist.rb
2019-03-01 21:51:15 -03:00

12 lines
188 B
Ruby

# frozen_string_literal: true
module Rack
class Attack
class Safelist < Check
def initialize(name, &block)
super
@type = :safelist
end
end
end
end