Say I have a todo application and clicking a checkbox on any individual Todo marks it as complete and does a PUT operation.
Then there is a checkbox to 'mark all complete' or 'mark all incomplete'. This should mark every todo as completed/incomplete, regardless of what its individual status is.
When using angular-resource
, what is the best practice way to update all the items. Is it possible to do it in a single bulk request and have all the items updated? Or would I be better off just updating each one individually?