mirror of
https://github.com/samsonjs/rack-attack.git
synced 2026-03-25 09:25:49 +00:00
13 lines
186 B
Ruby
13 lines
186 B
Ruby
require_relative 'check'
|
|
module Rack
|
|
module Attack
|
|
class Blacklist < Check
|
|
def initialize(name, block)
|
|
super
|
|
@type = :blacklist
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
|