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

12 lines
267 B
Ruby

module BlobViewer
class Notebook < Base
include Rich
include ClientSide
self.partial_name = 'notebook'
self.extensions = %w(ipynb)
self.text_based = true
self.switcher_icon = 'file-text-o'
self.switcher_title = 'notebook'
end
end