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

13 lines
264 B
Ruby
Raw Normal View History

2017-04-13 17:21:07 +00:00
module BlobViewer
class Notebook < Base
include Rich
include ClientSide
self.partial_name = 'notebook'
self.extensions = %w(ipynb)
self.binary = false
2017-04-13 17:21:07 +00:00
self.switcher_icon = 'file-text-o'
self.switcher_title = 'notebook'
end
end