discourse/lib/googlebot_detection.rb

6 lines
131 B
Ruby

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