mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-18 11:32:24 -05:00
15 lines
255 B
Ruby
15 lines
255 B
Ruby
|
require_dependency 'oneboxer/oembed_onebox'
|
||
|
|
||
|
module Oneboxer
|
||
|
class KinomapOnebox < OembedOnebox
|
||
|
|
||
|
matcher /kinomap\.com/
|
||
|
|
||
|
def oembed_endpoint
|
||
|
"http://www.kinomap.com/oembed?url=#{BaseOnebox.uriencode(@url)}&format=json"
|
||
|
end
|
||
|
|
||
|
|
||
|
end
|
||
|
end
|