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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
288 B
Ruby
Raw Normal View History

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