Merge branch 'master' into fixes/api
Conflicts: spec/requests/api/projects_spec.rb
This commit is contained in:
commit
f0e417091c
3 changed files with 6 additions and 7 deletions
|
@ -354,7 +354,7 @@ Removes a hook from project. This is an idempotent method and can be called mult
|
|||
Either the hook is available or not.
|
||||
|
||||
```
|
||||
DELETE /projects/:id/hooks
|
||||
DELETE /projects/:id/hooks/:hook_id
|
||||
```
|
||||
|
||||
Parameters:
|
||||
|
|
|
@ -244,8 +244,8 @@ module Gitlab
|
|||
# id (required) - The ID of a project
|
||||
# hook_id (required) - The ID of hook to delete
|
||||
# Example Request:
|
||||
# DELETE /projects/:id/hooks
|
||||
delete ":id/hooks" do
|
||||
# DELETE /projects/:id/hooks/:hook_id
|
||||
delete ":id/hooks/:hook_id" do
|
||||
authorize! :admin_project, user_project
|
||||
bad_request!(:hook_id) unless params.has_key? :hook_id
|
||||
|
||||
|
|
|
@ -384,7 +384,7 @@ describe Gitlab::API do
|
|||
it "should add hook to project" do
|
||||
expect {
|
||||
post api("/projects/#{project.id}/hooks", user),
|
||||
"url" => "http://example.com"
|
||||
url: "http://example.com"
|
||||
}.to change {project.hooks.count}.by(1)
|
||||
response.status.should == 201
|
||||
end
|
||||
|
@ -424,11 +424,10 @@ describe Gitlab::API do
|
|||
end
|
||||
end
|
||||
|
||||
describe "DELETE /projects/:id/hooks" do
|
||||
describe "DELETE /projects/:id/hooks/:hook_id" do
|
||||
it "should delete hook from project" do
|
||||
expect {
|
||||
delete api("/projects/#{project.id}/hooks", user),
|
||||
hook_id: hook.id
|
||||
delete api("/projects/#{project.id}/hooks/#{hook.id}", user)
|
||||
}.to change {project.hooks.count}.by(-1)
|
||||
response.status.should == 200
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue