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