mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 01:47:22 +08:00
15 lines
277 B
Ruby
15 lines
277 B
Ruby
require_dependency 'oneboxer/oembed_onebox'
|
|
|
|
module Oneboxer
|
|
class KinomapOnebox < OembedOnebox
|
|
|
|
matcher /^https?:\/\/(?:www\.)?kinomap\.com/
|
|
|
|
def oembed_endpoint
|
|
"http://www.kinomap.com/oembed?url=#{BaseOnebox.uriencode(@url)}&format=json"
|
|
end
|
|
|
|
|
|
end
|
|
end
|