BigW Consortium Gitlab

video.rb 259 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
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