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'
|
|
|
|
self.extensions = UploaderHelper::VIDEO_EXT
|
|
|
|
self.binary = true
|
|
|
|
self.switcher_icon = 'film'
|
|
|
|
self.switcher_title = 'video'
|
|
|
|
end
|
|
|
|
end
|