gitlab-org--gitlab-foss/app/models/blob_viewer/binary_stl.rb
2017-04-27 12:23:26 -05:00

10 lines
177 B
Ruby

module BlobViewer
class BinarySTL < Base
include Rich
include ClientSide
self.partial_name = 'stl'
self.extensions = %w(stl)
self.binary = true
end
end