summaryrefslogtreecommitdiff
path: root/app/controllers/concerns/project_unauthorized.rb
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