diff options
author | Sebastian Ziebell <sebastian.ziebell@asquera.de> | 2013-03-05 23:43:05 +0100 |
---|---|---|
committer | Sebastian Ziebell <sebastian.ziebell@asquera.de> | 2013-03-05 23:43:05 +0100 |
commit | b5ef6d226864d3ea132d2c6e97b74b51f2b64a6f (patch) | |
tree | 5f78f405044dc54da75ec25a47bc9712a70ab162 /lib/api/projects.rb | |
parent | cce35b6d057611d792bdc70022bd7264798527a7 (diff) | |
download | gitlab-ce-b5ef6d226864d3ea132d2c6e97b74b51f2b64a6f.tar.gz |
API: refactored and simplified error handling in merge requests API
Diffstat (limited to 'lib/api/projects.rb')
-rw-r--r-- | lib/api/projects.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/api/projects.rb b/lib/api/projects.rb index cf48f88bec9..b8efef318d3 100644 --- a/lib/api/projects.rb +++ b/lib/api/projects.rb @@ -233,7 +233,7 @@ module Gitlab end end - # Delete project hook + # Deletes project hook. This is an idempotent function. # # Parameters: # id (required) - The ID of a project @@ -248,6 +248,7 @@ module Gitlab @hook = ProjectHook.find(params[:hook_id]) @hook.destroy rescue + # ProjectHook can raise Error if hook_id not found end end |