Fix RESTfulness of project hook deletions by API
This commit is contained in:
parent
b7ac654b88
commit
33c513274d
|
@ -265,7 +265,7 @@ Will return status `201 Created` on success, or `404 Not found` on fail.
|
||||||
Delete hook from project
|
Delete hook from project
|
||||||
|
|
||||||
```
|
```
|
||||||
DELETE /projects/:id/hooks
|
DELETE /projects/:id/hooks/:hook_id
|
||||||
```
|
```
|
||||||
|
|
||||||
Parameters:
|
Parameters:
|
||||||
|
|
|
@ -205,8 +205,8 @@ module Gitlab
|
||||||
# id (required) - The ID of a project
|
# id (required) - The ID of a project
|
||||||
# hook_id (required) - The ID of hook to delete
|
# hook_id (required) - The ID of hook to delete
|
||||||
# Example Request:
|
# Example Request:
|
||||||
# DELETE /projects/:id/hooks
|
# DELETE /projects/:id/hooks/:hook_id
|
||||||
delete ":id/hooks" do
|
delete ":id/hooks/:hook_id" do
|
||||||
authorize! :admin_project, user_project
|
authorize! :admin_project, user_project
|
||||||
@hook = user_project.hooks.find(params[:hook_id])
|
@hook = user_project.hooks.find(params[:hook_id])
|
||||||
@hook.destroy
|
@hook.destroy
|
||||||
|
|
|
@ -275,11 +275,10 @@ describe Gitlab::API do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
describe "DELETE /projects/:id/hooks/:hook_id" do
|
||||||
describe "DELETE /projects/:id/hooks" do
|
|
||||||
it "should delete hook from project" do
|
it "should delete hook from project" do
|
||||||
expect {
|
expect {
|
||||||
delete api("/projects/#{project.id}/hooks", user),
|
delete api("/projects/#{project.id}/hooks/#{hook.id}", user),
|
||||||
hook_id: hook.id
|
hook_id: hook.id
|
||||||
}.to change {project.hooks.count}.by(-1)
|
}.to change {project.hooks.count}.by(-1)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue