Return an error code when bulk product edit save fails

This commit is contained in:
Rohan Mitchell
2013-10-18 16:21:16 +11:00
parent bd112c64b0
commit 8ccad4b53a

View File

@@ -14,7 +14,7 @@ Spree::Admin::ProductsController.class_eval do
if product_set.save
redirect_to "/api/products/managed?template=bulk_index&page=1&per_page=500"
else
render :nothing => true
render :nothing => true, :status => 418
end
end