mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-02 11:59:17 -05:00
ba238f92c2
This reverts commit7ca57db97a
, reversing changes made tob7e027cfd1
.
13 lines
257 B
Ruby
13 lines
257 B
Ruby
require_dependency 'oneboxer/oembed_onebox'
|
|
|
|
module Oneboxer
|
|
class ViddlerOnebox < OembedOnebox
|
|
|
|
matcher /viddler\.com\/.+$/
|
|
|
|
def oembed_endpoint
|
|
"http://lab.viddler.com/services/oembed/?url=#{BaseOnebox.uriencode(@url)}"
|
|
end
|
|
|
|
end
|
|
end
|