summaryrefslogtreecommitdiff
path: root/app/models/blob_viewer/audio.rb
blob: cc7fe3b0d903ba7ef09dbfe3136d0046e5c74cf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

module BlobViewer
  class Audio < Base
    include Rich
    include ClientSide

    self.partial_name = 'audio'
    self.extensions = UploaderHelper::SAFE_AUDIO_EXT
    self.binary = true
  end
end