Having an issue with the Restangular service. When making a POST request, the response Object contains all the Restangular methods which I don't want. I just need a clean response without any extra methods. Any suggestions on how to achieve this?
this.Restangular.one("auth").post("login",data).then(function(resp){
console.log(resp);
// unwanted Restangular methods in response object
}