mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
14 lines
265 B
Ruby
14 lines
265 B
Ruby
require_dependency 'oneboxer/oembed_onebox'
|
|
|
|
module Oneboxer
|
|
class DailymotionOnebox < OembedOnebox
|
|
|
|
matcher /dailymotion\.com\/.+$/
|
|
|
|
def oembed_endpoint
|
|
"http://www.dailymotion.com/api/oembed/?url=#{BaseOnebox.uriencode(@url)}"
|
|
end
|
|
|
|
|
|
end
|
|
end
|