We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d415f69 commit 286f35bCopy full SHA for 286f35b
crud/src/main/java/com/redhat/lightblue/mediator/Mediator.java
@@ -147,6 +147,8 @@ public Response insert(InsertionRequest req) {
147
ctx.setStatus(OperationStatus.ERROR);
148
}
149
} else {
150
+ List<DataError> dataErrors=setResponseResults(ctx,req,response);
151
+ response.getDataErrors().addAll(dataErrors);
152
153
154
@@ -210,6 +212,9 @@ public Response save(SaveRequest req) {
210
212
211
213
214
215
+ } else {
216
217
218
219
220
response.getErrors().addAll(ctx.getErrors());
0 commit comments