diff options
author | Valery Sizov <valery@gitlab.com> | 2015-11-02 16:56:44 +0200 |
---|---|---|
committer | Valery Sizov <vsv2711@gmail.com> | 2015-11-03 12:16:40 +0200 |
commit | 9479496f7584336788fc61121c096dfbcb3f6e4a (patch) | |
tree | 735eb8e0077c42629bf516b5498ff7e3ce5e4b2a /doc/web_hooks | |
parent | b9e53258c505abeda8a975b550f2cb276caaf01b (diff) | |
download | gitlab-ce-9479496f7584336788fc61121c096dfbcb3f6e4a.tar.gz |
Add added, modified and removed properties to commit object in webhookweb_hook_repo_changes
Diffstat (limited to 'doc/web_hooks')
-rw-r--r-- | doc/web_hooks/web_hooks.md | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/web_hooks/web_hooks.md b/doc/web_hooks/web_hooks.md index ef99a69f60a..7d838187a26 100644 --- a/doc/web_hooks/web_hooks.md +++ b/doc/web_hooks/web_hooks.md @@ -69,7 +69,10 @@ X-Gitlab-Event: Push Hook } } ], - "total_commits_count": 4 + "total_commits_count": 4, + "added": ["CHANGELOG"], + "modified": ["app/controller/application.rb"], + "removed": [] } ``` |