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
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
1bc0bd32
Commit
1bc0bd32
authored
Mar 06, 2012
by
Abhi Devireddy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adapt to new web_hook_data method
Uses the first key that the user has for testing post receive hook.
parent
eb7bbedb
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
app/controllers/hooks_controller.rb
app/controllers/hooks_controller.rb
+1
-1
No files found.
app/controllers/hooks_controller.rb
View file @
1bc0bd32
...
...
@@ -32,7 +32,7 @@ class HooksController < ApplicationController
def
test
@hook
=
@project
.
web_hooks
.
find
(
params
[
:id
])
commits
=
@project
.
commits
(
@project
.
default_branch
,
nil
,
3
)
data
=
@project
.
web_hook_data
(
commits
.
last
.
id
,
commits
.
first
.
id
,
"refs/heads/
#{
@project
.
default_branch
}
"
)
data
=
@project
.
web_hook_data
(
commits
.
last
.
id
,
commits
.
first
.
id
,
"refs/heads/
#{
@project
.
default_branch
}
"
,
current_user
.
keys
.
first
.
identifier
)
@hook
.
execute
(
data
)
redirect_to
:back
...
...
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