mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:40:00 +08:00
15 lines
287 B
Ruby
15 lines
287 B
Ruby
require_dependency 'oneboxer/oembed_onebox'
|
|
|
|
module Oneboxer
|
|
class DailymotionOnebox < OembedOnebox
|
|
|
|
matcher /^https?:\/\/(?:www\.)?dailymotion\.com\/.+$/
|
|
|
|
def oembed_endpoint
|
|
"http://www.dailymotion.com/api/oembed/?url=#{BaseOnebox.uriencode(@url)}"
|
|
end
|
|
|
|
|
|
end
|
|
end
|