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

15 lines
287 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-04-13 17:21:07 +00:00
module BlobViewer
class Sketch < Base
include Rich
include ClientSide
self.partial_name = 'sketch'
self.extensions = %w(sketch)
self.binary = true
2017-04-13 17:21:07 +00:00
self.switcher_icon = 'file-image-o'
self.switcher_title = 'preview'
end
end