mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 15:08:56 +08:00
14 lines
233 B
Ruby
14 lines
233 B
Ruby
require_dependency 'oneboxer/base_onebox'
|
|
|
|
module Oneboxer
|
|
class ImageOnebox < BaseOnebox
|
|
|
|
matcher /^https?:\/\/.*\.(jpg|png|gif|jpeg)$/
|
|
|
|
def onebox
|
|
Oneboxer::BaseOnebox.image_html(@url, nil, @url)
|
|
end
|
|
|
|
end
|
|
end
|