diff options
author | bugagazavr <kirik910@gmail.com> | 2015-01-24 03:10:43 +0300 |
---|---|---|
committer | Kirill Zaitsev <kirik910@gmail.com> | 2015-04-25 21:31:52 +0300 |
commit | 548f182814acd0f7a110e6c165c186e345901b00 (patch) | |
tree | 26bb991cb343dd48c81f1004016817e634ee5039 /lib | |
parent | 5cb325b50188fb2ba6483e710a29350c4b0b06ae (diff) | |
download | gitlab-ce-548f182814acd0f7a110e6c165c186e345901b00.tar.gz |
Added X-GitLab-Event header for web hooks
Diffstat (limited to 'lib')
-rw-r--r-- | lib/api/system_hooks.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/api/system_hooks.rb b/lib/api/system_hooks.rb index 518964db50d..22b8f90dc5c 100644 --- a/lib/api/system_hooks.rb +++ b/lib/api/system_hooks.rb @@ -47,7 +47,7 @@ module API owner_name: "Someone", owner_email: "example@gitlabhq.com" } - @hook.execute(data) + @hook.execute(data, 'system_hooks') data end |