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