I'm trying to use Restangular service, but I have gotten one problem which I can't solve. For example I'm doing the POST request and I want to get clean response Object, but in my response Object wrapped all Restangular
methods, I know may be it's a feature, but I need my clean response :))
this.Restangular.one("auth").post("login",data).then(function(resp){
console.log(resp);
// in response object wrapped all Restangular methods
}