Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
627cb28f
Commit
627cb28f
authored
Oct 14, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of dev.gitlab.org:gitlab/gitlabhq
parents
3cbfb1ee
04aba778
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
0 deletions
+4
-0
app/services/git_push_service.rb
app/services/git_push_service.rb
+2
-0
app/views/projects/hooks/_data_ex.html.erb
app/views/projects/hooks/_data_ex.html.erb
+1
-0
spec/services/git_push_service_spec.rb
spec/services/git_push_service_spec.rb
+1
-0
No files found.
app/services/git_push_service.rb
View file @
627cb28f
...
@@ -112,6 +112,7 @@ class GitPushService
...
@@ -112,6 +112,7 @@ class GitPushService
# ref: String,
# ref: String,
# user_id: String,
# user_id: String,
# user_name: String,
# user_name: String,
# project_id: String,
# repository: {
# repository: {
# name: String,
# name: String,
# url: String,
# url: String,
...
@@ -136,6 +137,7 @@ class GitPushService
...
@@ -136,6 +137,7 @@ class GitPushService
ref:
ref
,
ref:
ref
,
user_id:
user
.
id
,
user_id:
user
.
id
,
user_name:
user
.
name
,
user_name:
user
.
name
,
project_id:
project
.
id
,
repository:
{
repository:
{
name:
project
.
name
,
name:
project
.
name
,
url:
project
.
url_to_repo
,
url:
project
.
url_to_repo
,
...
...
app/views/projects/hooks/_data_ex.html.erb
View file @
627cb28f
...
@@ -5,6 +5,7 @@
...
@@ -5,6 +5,7 @@
"ref": "refs/heads/master",
"ref": "refs/heads/master",
"user_id": 4,
"user_id": 4,
"user_name": "John Smith",
"user_name": "John Smith",
"project_id": 15,
"repository": {
"repository": {
"name": "Diaspora",
"name": "Diaspora",
"url": "git@localhost:diaspora.git",
"url": "git@localhost:diaspora.git",
...
...
spec/services/git_push_service_spec.rb
View file @
627cb28f
...
@@ -26,6 +26,7 @@ describe GitPushService do
...
@@ -26,6 +26,7 @@ describe GitPushService do
it
{
should
include
(
ref:
@ref
)
}
it
{
should
include
(
ref:
@ref
)
}
it
{
should
include
(
user_id:
user
.
id
)
}
it
{
should
include
(
user_id:
user
.
id
)
}
it
{
should
include
(
user_name:
user
.
name
)
}
it
{
should
include
(
user_name:
user
.
name
)
}
it
{
should
include
(
project_id:
project
.
id
)
}
context
"with repository data"
do
context
"with repository data"
do
subject
{
@push_data
[
:repository
]
}
subject
{
@push_data
[
:repository
]
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment