discourse/lib/onebox/engine/json.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
206 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Onebox
module Engine
module JSON
private
def raw
@raw ||= ::MultiJson.load(URI.open(url, read_timeout: timeout))
end
end
end
end