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

auxiliary.rb « blob_viewer « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1bea225f17ccfd59a6a9558217db39dce950ed70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module BlobViewer
  module Auxiliary
    extend ActiveSupport::Concern

    include Gitlab::Allowable

    included do
      self.loading_partial_name = 'loading_auxiliary'
      self.type = :auxiliary
      self.collapse_limit = 100.kilobytes
      self.size_limit = 100.kilobytes
    end

    def visible_to?(current_user)
      true
    end
  end
end