mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
ba238f92c2
This reverts commit7ca57db97a
, reversing changes made tob7e027cfd1
.
13 lines
317 B
Ruby
13 lines
317 B
Ruby
require_dependency 'oneboxer/oembed_onebox'
|
|
|
|
module Oneboxer
|
|
class YfrogOnebox < OembedOnebox
|
|
|
|
matcher /yfrog\.(com|ru|com\.tr|it|fr|co\.il|co\.uk|com\.pl|pl|eu|us)\/[a-zA-Z0-9]+/
|
|
|
|
def oembed_endpoint
|
|
"http://www.yfrog.com/api/oembed/?url=#{BaseOnebox.uriencode(@url)}&format=json"
|
|
end
|
|
|
|
end
|
|
end
|