mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 02:19:27 +08:00
8 lines
172 B
Ruby
8 lines
172 B
Ruby
# frozen_string_literal: true
|
|
|
|
Fabricator(:web_crawler_request) do
|
|
user_agent { sequence(:ua) { |i| "Googlebot #{i}.0" } }
|
|
date { Time.zone.now.to_date }
|
|
count 0
|
|
end
|