7
I am making an ajax call to change an object. The call does not need to return anything. Only http 200 (OK) or 500 (error) code. I’m using the following code in the action but I don’t know if it’s the best:
return new EmptyResult();
What is the best way to do an Action that does not return data?