mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 11:20:57 -06:00
12 lines
266 B
Ruby
12 lines
266 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Onebox
|
||
|
class DomainChecker
|
||
|
def self.is_blocked?(hostname)
|
||
|
SiteSetting.blocked_onebox_domains&.split('|').any? do |blocked|
|
||
|
hostname == blocked || hostname.end_with?(".#{blocked}")
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|