mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 01:42:04 +08:00
14 lines
272 B
Ruby
14 lines
272 B
Ruby
require_dependency 'oneboxer/oembed_onebox'
|
|
|
|
module Oneboxer
|
|
class HuluOnebox < OembedOnebox
|
|
|
|
matcher /^https?\:\/\/www\.hulu\.com\/watch\/.*$/
|
|
|
|
def oembed_endpoint
|
|
"http://www.hulu.com/api/oembed.json?url=#{BaseOnebox.uriencode(@url)}"
|
|
end
|
|
|
|
end
|
|
end
|