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

13 lines
259 B
Ruby

module BlobViewer
class Video < Base
include Rich
include ClientSide
self.partial_name = 'video'
self.extensions = UploaderHelper::VIDEO_EXT
self.binary = true
self.switcher_icon = 'film'
self.switcher_title = 'video'
end
end