mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 17:15:32 +08:00
14 lines
260 B
Ruby
14 lines
260 B
Ruby
|
require_dependency 'oneboxer/oembed_onebox'
|
||
|
|
||
|
module Oneboxer
|
||
|
class QikOnebox < OembedOnebox
|
||
|
|
||
|
matcher /^https?\:\/\/qik\.com\/video\/.*$/
|
||
|
|
||
|
def oembed_endpoint
|
||
|
"http://qik.com/api/oembed.json?url=#{BaseOnebox.uriencode(@url)}"
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|