Improve web hook data. Use clonable url in repo info
This commit is contained in:
parent
0af5884bcd
commit
3ff131a747
3 changed files with 4 additions and 4 deletions
|
@ -98,7 +98,7 @@ module PushObserver
|
||||||
user_name: user.name,
|
user_name: user.name,
|
||||||
repository: {
|
repository: {
|
||||||
name: name,
|
name: name,
|
||||||
url: web_url,
|
url: url_to_repo,
|
||||||
description: description,
|
description: description,
|
||||||
homepage: web_url,
|
homepage: web_url,
|
||||||
},
|
},
|
||||||
|
|
|
@ -7,9 +7,9 @@
|
||||||
:user_name => "John Smith",
|
:user_name => "John Smith",
|
||||||
:repository => {
|
:repository => {
|
||||||
:name => "Diaspora",
|
:name => "Diaspora",
|
||||||
:url => "localhost/diaspora",
|
:url => "git@localhost/diaspora.git",
|
||||||
:description => "",
|
:description => "",
|
||||||
:homepage => "localhost/diaspora",
|
:homepage => "http://localhost/diaspora",
|
||||||
:private => true
|
:private => true
|
||||||
},
|
},
|
||||||
:commits => [
|
:commits => [
|
||||||
|
|
|
@ -91,7 +91,7 @@ describe Project, "Hooks" do
|
||||||
subject { @data[:repository] }
|
subject { @data[:repository] }
|
||||||
|
|
||||||
it { should include(name: project.name) }
|
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(description: project.description) }
|
||||||
it { should include(homepage: project.web_url) }
|
it { should include(homepage: project.web_url) }
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue