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