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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-11-25 14:26:34 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-11-25 14:26:34 +0400
commit97a92f8ae78a186aa76fcc860b570cf07c90c048 (patch)
treed7d7ec82bcd4a387fc3f44fec89f699f87401a13 /app
parentc31d48dd250c56164280343a2cbe6ae14bd72a4a (diff)
Fixed user.namespace_id exception if namespace is nil
Diffstat (limited to 'app')
-rw-r--r--app/controllers/admin/projects_controller.rb3
-rw-r--r--app/models/user.rb1
2 files changed, 1 insertions, 3 deletions
diff --git a/app/controllers/admin/projects_controller.rb b/app/controllers/admin/projects_controller.rb
index 27dd50e4d8c..42bd6aebbb0 100644
--- a/app/controllers/admin/projects_controller.rb
+++ b/app/controllers/admin/projects_controller.rb
@@ -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
diff --git a/app/models/user.rb b/app/models/user.rb
index 5559f847a8a..4f749699fb8 100644
--- a/app/models/user.rb
+++ b/app/models/user.rb
@@ -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) ) }