summaryrefslogtreecommitdiff
path: root/app/models/blob_viewer/binary_stl.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/blob_viewer/binary_stl.rb')
-rw-r--r--app/models/blob_viewer/binary_stl.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/app/models/blob_viewer/binary_stl.rb b/app/models/blob_viewer/binary_stl.rb
new file mode 100644
index 00000000000..80393471ef2
--- /dev/null
+++ b/app/models/blob_viewer/binary_stl.rb
@@ -0,0 +1,10 @@
+module BlobViewer
+ class BinarySTL < Base
+ include Rich
+ include ClientSide
+
+ self.partial_name = 'stl'
+ self.extensions = %w(stl)
+ self.binary = true
+ end
+end