I have this piece of code where the response status code is 403. The problem is it will never fire the second function, it simply does nothing.
I've seen similar errors but people were using interceptors, which I'm not.
Itens.signUp($scope.user, confirmation).then(function (response) {
console.log('success');
},
function (response) {
console.log('error');
});