mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 15:05:24 +08:00
14 lines
279 B
Ruby
14 lines
279 B
Ruby
require_dependency 'oneboxer/oembed_onebox'
|
|
|
|
module Oneboxer
|
|
class ViddlerOnebox < OembedOnebox
|
|
|
|
matcher /^https?:\/\/(?:www\.)?viddler\.com\/.+$/
|
|
|
|
def oembed_endpoint
|
|
"http://lab.viddler.com/services/oembed/?url=#{BaseOnebox.uriencode(@url)}"
|
|
end
|
|
|
|
end
|
|
end
|