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

14 lines
236 B
Ruby

# frozen_string_literal: true
module BlobViewer
class CSV < Base
include Rich
include ClientSide
self.binary = false
self.extensions = %w(csv)
self.partial_name = 'csv'
self.switcher_icon = 'table'
end
end