mirror of
https://github.com/discourse/discourse.git
synced 2025-01-19 07:52:45 +08:00
6 lines
131 B
Ruby
6 lines
131 B
Ruby
module GooglebotDetection
|
|
def self.googlebot?(user_agent)
|
|
!/Googlebot|Mediapartners|AdsBot/.match(user_agent).nil?
|
|
end
|
|
end
|