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