mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
15 lines
312 B
Ruby
15 lines
312 B
Ruby
|
require_dependency 'oneboxer/oembed_onebox'
|
||
|
|
||
|
module Oneboxer
|
||
|
class SlideshareOnebox < OembedOnebox
|
||
|
|
||
|
matcher /^https?\:\/\/(www\.)?slideshare\.net\/*\/.*$/
|
||
|
|
||
|
def oembed_endpoint
|
||
|
"http://www.slideshare.net/api/oembed/2?url=#{BaseOnebox.uriencode(@url)}&format=json&maxwidth=600"
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
|