I have one function processResponse
that has logic to handle both successful and failed response. Now I use it like this:
return $http.get(url).then(processResponse, processResponse).then(function (data) {});
Is there any way to use $q in a way so that I specify the function only once?
The answer is no, although if you want to run common code regardless of the result of your promise you can use
finally