Chatwoot/lib/url_helper.rb
2022-03-30 14:36:22 +05:30

11 lines
195 B
Ruby

require 'uri'
module UrlHelper
def url_valid?(url)
url = begin
URI.parse(url)
rescue StandardError
false
end
url.is_a?(URI::HTTP) || url.is_a?(URI::HTTPS)
end
end