mirror of
https://github.com/samsonjs/rack-attack.git
synced 2026-03-25 09:25:49 +00:00
11 lines
159 B
Ruby
11 lines
159 B
Ruby
module Rack
|
|
class Attack
|
|
class Blocklist < Check
|
|
def initialize(name, block)
|
|
super
|
|
@type = :blocklist
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|