mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 15:05:24 +08:00
15 lines
304 B
Ruby
15 lines
304 B
Ruby
require_dependency 'oneboxer/oembed_onebox'
|
|
|
|
module Oneboxer
|
|
class ClikthroughOnebox < OembedOnebox
|
|
|
|
matcher /^https?:\/\/(?:www\.)?clikthrough\.com\/theater\/video\/\d+$/
|
|
|
|
def oembed_endpoint
|
|
"http://clikthrough.com/services/oembed?url=#{BaseOnebox.uriencode(@url)}"
|
|
end
|
|
|
|
|
|
end
|
|
end
|