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
4e49f21b
Commit
4e49f21b
authored
9 years ago
by
Douwe Maan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Set push data object kind in PushDataBuilder.
parent
606d24ff
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
7 deletions
+4
-7
app/services/create_tag_service.rb
app/services/create_tag_service.rb
+1
-3
app/services/git_tag_push_service.rb
app/services/git_tag_push_service.rb
+1
-3
lib/gitlab/push_data_builder.rb
lib/gitlab/push_data_builder.rb
+2
-1
No files found.
app/services/create_tag_service.rb
View file @
4e49f21b
...
@@ -40,9 +40,7 @@ class CreateTagService < BaseService
...
@@ -40,9 +40,7 @@ class CreateTagService < BaseService
end
end
def
create_push_data
(
project
,
user
,
tag
)
def
create_push_data
(
project
,
user
,
tag
)
data
=
Gitlab
::
PushDataBuilder
.
Gitlab
::
PushDataBuilder
.
build
(
project
,
user
,
Gitlab
::
Git
::
BLANK_SHA
,
tag
.
target
,
"
#{
Gitlab
::
Git
::
TAG_REF_PREFIX
}#{
tag
.
name
}
"
,
[])
build
(
project
,
user
,
Gitlab
::
Git
::
BLANK_SHA
,
tag
.
target
,
"
#{
Gitlab
::
Git
::
TAG_REF_PREFIX
}#{
tag
.
name
}
"
,
[])
data
[
:object_kind
]
=
"tag_push"
data
end
end
end
end
This diff is collapsed.
Click to expand it.
app/services/git_tag_push_service.rb
View file @
4e49f21b
...
@@ -16,8 +16,6 @@ class GitTagPushService
...
@@ -16,8 +16,6 @@ class GitTagPushService
private
private
def
create_push_data
(
oldrev
,
newrev
,
ref
)
def
create_push_data
(
oldrev
,
newrev
,
ref
)
data
=
Gitlab
::
PushDataBuilder
.
build
(
project
,
user
,
oldrev
,
newrev
,
ref
,
[])
Gitlab
::
PushDataBuilder
.
build
(
project
,
user
,
oldrev
,
newrev
,
ref
,
[])
data
[
:object_kind
]
=
"tag_push"
data
end
end
end
end
This diff is collapsed.
Click to expand it.
lib/gitlab/push_data_builder.rb
View file @
4e49f21b
...
@@ -28,9 +28,10 @@ module Gitlab
...
@@ -28,9 +28,10 @@ module Gitlab
# Get latest 20 commits ASC
# Get latest 20 commits ASC
commits_limited
=
commits
.
last
(
20
)
commits_limited
=
commits
.
last
(
20
)
type
=
Gitlab
::
Git
.
tag_ref?
(
ref
)
?
"tag_push"
:
"push"
# Hash to be passed as post_receive_data
# Hash to be passed as post_receive_data
data
=
{
data
=
{
object_kind:
"push"
,
object_kind:
type
,
before:
oldrev
,
before:
oldrev
,
after:
newrev
,
after:
newrev
,
ref:
ref
,
ref:
ref
,
...
...
This diff is collapsed.
Click to expand it.
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