Welcome to mirror list, hosted at ThFree Co, Russian Federation.

video.rb « blob_viewer « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 057f9fe516f02a2e4da96ae4dca57fa9782efd3b (plain)
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