a8da0de528
With a time treshold of 4 seconds and a firstname and lastname honeypot input fields when signing up
7 lines
181 B
Ruby
7 lines
181 B
Ruby
# frozen_string_literal: true
|
|
|
|
InvisibleCaptcha.setup do |config|
|
|
config.honeypots = %w(firstname lastname)
|
|
config.timestamp_enabled = true
|
|
config.timestamp_threshold = 4
|
|
end
|