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.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/app/models/blob_viewer/auxiliary.rb b/app/models/blob_viewer/auxiliary.rb
index cd6e596ed60..07a207730cf 100644
--- a/app/models/blob_viewer/auxiliary.rb
+++ b/app/models/blob_viewer/auxiliary.rb
@@ -2,11 +2,17 @@ module BlobViewer
module Auxiliary
extend ActiveSupport::Concern
+ include Gitlab::Allowable
+
included do
self.loading_partial_name = 'loading_auxiliary'
self.type = :auxiliary
self.overridable_max_size = 100.kilobytes
self.max_size = 100.kilobytes
end
+
+ def visible_to?(current_user)
+ true
+ end
end
end