From adc51a9b9108a3cf8088393bdd1a68a37504dc09 Mon Sep 17 00:00:00 2001
From: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Date: Wed, 22 May 2013 14:06:31 +0300
Subject: [PATCH] Use separate property for project path and project path with
 namespace inside system hook

---
 app/services/system_hooks_service.rb | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/app/services/system_hooks_service.rb b/app/services/system_hooks_service.rb
index fd3c9a2cede..a52d13d5237 100644
--- a/app/services/system_hooks_service.rb
+++ b/app/services/system_hooks_service.rb
@@ -25,7 +25,8 @@ class SystemHooksService
     when Project
       data.merge!({
         name: model.name,
-        path: model.path_with_namespace,
+        path: model.path,
+        path_with_namespace: model.path_with_namespace,
         project_id: model.id,
         owner_name: model.owner.name,
         owner_email: model.owner.email
-- 
GitLab