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

csv.rb « blob_viewer « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 633e3bd63d86ccd1e92eac84af5bfacec5ec9911 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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