summaryrefslogtreecommitdiff
path: root/app/models/blob_viewer/auxiliary.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/blob_viewer/auxiliary.rb')
-rw-r--r--app/models/blob_viewer/auxiliary.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/app/models/blob_viewer/auxiliary.rb b/app/models/blob_viewer/auxiliary.rb
new file mode 100644
index 00000000000..db124397b27
--- /dev/null
+++ b/app/models/blob_viewer/auxiliary.rb
@@ -0,0 +1,12 @@
+module BlobViewer
+ module Auxiliary
+ extend ActiveSupport::Concern
+
+ included do
+ self.loading_partial_name = 'loading_auxiliary'
+ self.type = :auxiliary
+ self.max_size = 100.kilobytes
+ self.absolute_max_size = 100.kilobytes
+ end
+ end
+end