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

12 lines
180 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-04-13 17:04:29 +00:00
module BlobViewer
class Download < Base
include Simple
include Static
2017-04-13 17:04:29 +00:00
self.partial_name = 'download'
self.binary = true
2017-04-13 17:04:29 +00:00
end
end