Welcome to mirror list, hosted at ThFree Co, Russian Federation.

notebook.rb « blob_viewer « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 351502d451f66e299990a853e0b9ed18ab775a0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module BlobViewer
  class Notebook < Base
    include Rich
    include ClientSide

    self.partial_name = 'notebook'
    self.extensions = %w(ipynb)
    self.binary = false
    self.switcher_icon = 'doc-text'
    self.switcher_title = 'notebook'
  end
end