2018-08-03 03:15:25 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-04-13 12:48:37 -04:00
|
|
|
module BlobViewer
|
|
|
|
class Video < Base
|
|
|
|
include Rich
|
|
|
|
include ClientSide
|
|
|
|
|
|
|
|
self.partial_name = 'video'
|
2019-09-23 14:06:14 -04:00
|
|
|
self.extensions = UploaderHelper::SAFE_VIDEO_EXT
|
2017-04-13 12:48:37 -04:00
|
|
|
self.binary = true
|
|
|
|
end
|
|
|
|
end
|