AngularJS handling rejected resources in $q.all AngularJS handling rejected resources in $q.all angularjs angularjs

AngularJS handling rejected resources in $q.all


According to Michael in the comments

I changed

var promiseList = [user];

To this:

var promiseList = [user.$promise];

And now the $q.reject() is being picked up by the $q.all().

Awesome, thanks for the advice.