mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
13 lines
233 B
Ruby
13 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
|