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

12 lines
218 B
Ruby

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