mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
13 lines
272 B
Ruby
13 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
|