mirror of
https://github.com/discourse/discourse.git
synced 2025-01-31 20:27:31 +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
|