rack-attack/lib/rack/attack/safelist.rb
2018-06-28 17:08:15 -03:00

12 lines
187 B
Ruby

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