gitlab-org--gitlab-foss/app/models/blob_viewer/image.rb

15 lines
295 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-04-13 17:21:07 +00:00
module BlobViewer
class Image < Base
include Rich
include ClientSide
self.partial_name = 'image'
self.extensions = UploaderHelper::IMAGE_EXT
self.binary = true
2017-04-13 17:21:07 +00:00
self.switcher_icon = 'picture-o'
self.switcher_title = 'image'
end
end