summaryrefslogtreecommitdiff
path: root/app/models/blob_viewer/auxiliary.rb
blob: cd6e596ed608a27913508b6e7cef3b9250b90a07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
module BlobViewer
  module Auxiliary
    extend ActiveSupport::Concern

    included do
      self.loading_partial_name = 'loading_auxiliary'
      self.type = :auxiliary
      self.overridable_max_size = 100.kilobytes
      self.max_size = 100.kilobytes
    end
  end
end