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
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-05-22 14:39:00 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-05-22 14:39:00 +0400
commit432df031cff8c3003ae2a3063dd3a078a6902c91 (patch)
treea6de7bac705d5946b13bd93f0077f4e2c1cbc994 /app/services/system_hooks_service.rb
parent71033c9efb9dc1e9cb28b01b2b5aa55a50d2c8d7 (diff)
include namespace in project path for system hook
Diffstat (limited to 'app/services/system_hooks_service.rb')
-rw-r--r--app/services/system_hooks_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/system_hooks_service.rb b/app/services/system_hooks_service.rb
index 132bb14a675..fd3c9a2cede 100644
--- a/app/services/system_hooks_service.rb
+++ b/app/services/system_hooks_service.rb
@@ -25,7 +25,7 @@ class SystemHooksService
when Project
data.merge!({
name: model.name,
- path: model.path,
+ path: model.path_with_namespace,
project_id: model.id,
owner_name: model.owner.name,
owner_email: model.owner.email