mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-29 11:57:26 +00:00

With a time treshold of 4 seconds and a firstname and lastname honeypot input fields when signing up
8 lines
181 B
Ruby
8 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
|