Skip to content
Snippets Groups Projects
Commit 97a92f8a authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Fixed user.namespace_id exception if namespace is nil

parent c31d48dd
No related branches found
No related tags found
1 merge request!2051User/Group namespaces for projects
Loading
Loading
@@ -47,9 +47,8 @@ class Admin::ProjectsController < AdminController
 
def project
id = params[:project_id] || params[:id]
id = id.split("/") if id.include?("/")
 
@project ||= Project.find_by_path(id)
@project = Project.find_with_namespace(id)
@project || render_404
end
end
Loading
Loading
@@ -72,7 +72,6 @@ class User < ActiveRecord::Base
alias_attribute :private_token, :authentication_token
 
delegate :path, to: :namespace, allow_nil: true, prefix: true
delegate :id, to: :namespace, allow_nil: true, prefix: true
 
# Scopes
scope :not_in_project, ->(project) { where("id not in (:ids)", ids: project.users.map(&:id) ) }
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment