debian-mirror-gitlab/app/models/blob_viewer/csv.rb

14 lines
236 B
Ruby
Raw Normal View History

2021-09-30 23:02:18 +05:30
# 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