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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
229 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module BlobViewer
class Video < Base
include Rich
include ClientSide
self.partial_name = 'video'
self.extensions = UploaderHelper::SAFE_VIDEO_EXT
self.binary = true
end
end