This message was deleted.
# questions
s
This message was deleted.
a
Hello, I was working in the restricted network, but I can send some code now. The request.JSON shows and empty array
g
So I was going to say it doesn't seem obvious to me what's wrong, but I think I see it. I think what might fix it is replacing line 19 with:
Copy code
dailySheet = dailySheetService.save(dailySheet)
Before making the change check to see if the DB is actually updated, and it's just the request that is sending back the old data. Side note, in general, I usually dissuade developers from using Domain Objects as command objects because of security concerns. In this case, you might not have any, but if you did instead of using a Domain object, you could use a command object, which is like a Domain object without the persistence and implements the trait
Validateable