2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-08-21 19:11:18 +08:00
discourse/lib/googlebot_detection.rb

6 lines
131 B
Ruby
Raw Normal View History

module GooglebotDetection
def self.googlebot?(user_agent)
!/Googlebot|Mediapartners|AdsBot/.match(user_agent).nil?
end
end