diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-11-06 10:57:05 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-11-06 10:57:05 +0200 |
commit | 0ce1826b44b4194b116f0a1875cbb891f6ca192d (patch) | |
tree | e6efd06a0fb92f936fb1931b0c51c1ba3b581bcd /app | |
parent | 6d60762793f79bfb07cc15e78ef6cc53dca6be48 (diff) | |
parent | e4a38e447169069f3d5042d3341ceb4bdc51bf1b (diff) | |
download | gitlab-ce-0ce1826b44b4194b116f0a1875cbb891f6ca192d.tar.gz |
Merge pull request #8258 from cirosantilli/factor-repo-path
Factor using Repository#path_to_repo
Diffstat (limited to 'app')
-rw-r--r-- | app/models/project_services/flowdock_service.rb | 3 | ||||
-rw-r--r-- | app/models/project_services/gemnasium_service.rb | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/app/models/project_services/flowdock_service.rb b/app/models/project_services/flowdock_service.rb index 0020b4482e5..86705f5dabd 100644 --- a/app/models/project_services/flowdock_service.rb +++ b/app/models/project_services/flowdock_service.rb @@ -37,13 +37,12 @@ class FlowdockService < Service end def execute(push_data) - repo_path = File.join(Gitlab.config.gitlab_shell.repos_path, "#{project.path_with_namespace}.git") Flowdock::Git.post( push_data[:ref], push_data[:before], push_data[:after], token: token, - repo: repo_path, + repo: project.repository.path_to_repo, repo_url: "#{Gitlab.config.gitlab.url}/#{project.path_with_namespace}", commit_url: "#{Gitlab.config.gitlab.url}/#{project.path_with_namespace}/commit/%s", diff_url: "#{Gitlab.config.gitlab.url}/#{project.path_with_namespace}/compare/%s...%s", diff --git a/app/models/project_services/gemnasium_service.rb b/app/models/project_services/gemnasium_service.rb index 6d2fc06a5d0..18fdd204ecd 100644 --- a/app/models/project_services/gemnasium_service.rb +++ b/app/models/project_services/gemnasium_service.rb @@ -38,14 +38,13 @@ class GemnasiumService < Service end def execute(push_data) - repo_path = File.join(Gitlab.config.gitlab_shell.repos_path, "#{project.path_with_namespace}.git") Gemnasium::GitlabService.execute( ref: push_data[:ref], before: push_data[:before], after: push_data[:after], token: token, api_key: api_key, - repo: repo_path + repo: project.repository.path_to_repo ) end end |