gitlab-org--gitlab-foss/app/models/blob_viewer/text.rb
2018-08-03 01:44:16 -07:00

13 lines
249 B
Ruby

# frozen_string_literal: true
module BlobViewer
class Text < Base
include Simple
include ServerSide
self.partial_name = 'text'
self.binary = false
self.collapse_limit = 1.megabyte
self.size_limit = 10.megabytes
end
end