Return no content on PUT /config

This commit is contained in:
Johannes Schnatterer
2018-07-31 14:14:21 +02:00
parent 912dea6d6e
commit ca93735514
2 changed files with 2 additions and 2 deletions

View File

@@ -82,6 +82,6 @@ public class GlobalConfigResource {
ScmConfigurationUtil.getInstance().store(configuration);
}
return Response.created(uriInfo.getRequestUri()).build();
return Response.noContent().build();
}
}