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

Improve web hook data. Use clonable url in repo info

parent 0af5884b
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -98,7 +98,7 @@ module PushObserver
user_name: user.name,
repository: {
name: name,
url: web_url,
url: url_to_repo,
description: description,
homepage: web_url,
},
Loading
Loading
Loading
Loading
@@ -7,9 +7,9 @@
:user_name => "John Smith",
:repository => {
:name => "Diaspora",
:url => "localhost/diaspora",
:url => "git@localhost/diaspora.git",
:description => "",
:homepage => "localhost/diaspora",
:homepage => "http://localhost/diaspora",
:private => true
},
:commits => [
Loading
Loading
Loading
Loading
@@ -91,7 +91,7 @@ describe Project, "Hooks" do
subject { @data[:repository] }
 
it { should include(name: project.name) }
it { should include(url: project.web_url) }
it { should include(url: project.url_to_repo) }
it { should include(description: project.description) }
it { should include(homepage: project.web_url) }
end
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