mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 18:30:26 -06:00
14 lines
250 B
Ruby
14 lines
250 B
Ruby
require_dependency 'oneboxer/base_onebox'
|
|
|
|
module Oneboxer
|
|
class ImageOnebox < BaseOnebox
|
|
|
|
matcher /^(https?:)?\/\/.+\.(png|jpg|jpeg|gif|bmp|tif|tiff)$/i
|
|
|
|
def onebox
|
|
Oneboxer::BaseOnebox.image_html(@url, nil, @url)
|
|
end
|
|
|
|
end
|
|
end
|