mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 16:40:01 +08:00
14 lines
212 B
Ruby
14 lines
212 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Onebox
|
|
module Engine
|
|
module JSON
|
|
private
|
|
|
|
def raw
|
|
@raw ||= ::MultiJson.load(URI.parse(url).open(read_timeout: timeout))
|
|
end
|
|
end
|
|
end
|
|
end
|