11 lines
172 B
Ruby
11 lines
172 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module ProjectUnauthorized
|
||
|
extend ActiveSupport::Concern
|
||
|
|
||
|
# EE would override this
|
||
|
def project_unauthorized_proc
|
||
|
# no-op
|
||
|
end
|
||
|
end
|