|
|
@@ -362,7 +362,6 @@ class Project < ApplicationRecord |
|
|
logger.info "########namespace_path: #{namespace_path} ########identifier: #{identifier} "
|
|
|
logger.info "########namespace_path: #{namespace_path} ########identifier: #{identifier} "
|
|
|
|
|
|
|
|
|
user = Owner.find_by_login namespace_path
|
|
|
user = Owner.find_by_login namespace_path
|
|
|
user = Owner.new(login: namespace_path) if user.nil?
|
|
|
|
|
|
project = user&.projects&.find_by(identifier: identifier) || Project.find_by(identifier: "#{namespace_path}/#{identifier}")
|
|
|
project = user&.projects&.find_by(identifier: identifier) || Project.find_by(identifier: "#{namespace_path}/#{identifier}")
|
|
|
return nil if project.blank?
|
|
|
return nil if project.blank?
|
|
|
|
|
|
|
|
|
|