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

download.rb « blob_viewer « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8228a83c2b1feae3873c8d0c971ae23940be69c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module BlobViewer
  class Download < Base
    include Simple
    include Static

    self.partial_name = 'download'
    self.binary = true
  end
end