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

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

module Blobs
  class Notebook < ::Blob
    attr_reader :data

    def initialize(blob, data)
      super(blob.__getobj__, blob.container)
      @data = data
    end
  end
end