Commit 659ef546 authored by Robert Schilling's avatar Robert Schilling

API: Return 400 when creating a systemhook fails

parent c392b0cc
---
title: Return 400 when creating a system hook fails
merge_request: 7350
author: Robert Schilling
......@@ -32,7 +32,7 @@ module API
if hook.save
present hook, with: Entities::Hook
else
not_found!
render_validation_error!(hook)
end
end
......
......@@ -52,6 +52,12 @@ describe API::API, api: true do
expect(response).to have_http_status(400)
end
it "responds with 400 if url is invalid" do
post api("/hooks", admin), url: 'hp://mep.mep'
expect(response).to have_http_status(400)
end
it "does not create new hook without url" do
expect do
post api("/hooks", admin)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment