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

project_unauthorized.rb « concerns « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f59440dbc598d334de74832307e52de896b5303f (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module ProjectUnauthorized
  extend ActiveSupport::Concern

  # EE would override this
  def project_unauthorized_proc
    # no-op
  end
end