mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 19:03:44 +08:00
15 lines
250 B
Ruby
15 lines
250 B
Ruby
|
require_dependency 'oneboxer/oembed_onebox'
|
||
|
|
||
|
module Oneboxer
|
||
|
class DotsubOnebox < OembedOnebox
|
||
|
|
||
|
matcher /dotsub\.com\/.+$/
|
||
|
|
||
|
def oembed_endpoint
|
||
|
"http://dotsub.com/services/oembed?url=#{BaseOnebox.uriencode(@url)}"
|
||
|
end
|
||
|
|
||
|
|
||
|
end
|
||
|
end
|