mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
c4b5455c21
will likely whitelist more crawlers in the future.
5 lines
127 B
Ruby
5 lines
127 B
Ruby
module CrawlerDetection
|
|
def self.crawler?(user_agent)
|
|
!/Googlebot|Mediapartners|AdsBot/.match(user_agent).nil?
|
|
end
|
|
end
|