Jaime Herencia Enjuto

Results 2 comments of Jaime Herencia Enjuto

I have the same problem: ``` var service = Restangular.withConfig(function(RestangularConfigurer) { RestangularConfigurer.addElementTransformer('tasks', false, function(action_item) { action_item.addRestangularMethod('addNotes', 'post', 'notes'); return action_item; }); }).service('tasks') // In my controller $scope.task.addNotes([note]).then(function(task) { console.log(task.getRequestedUrl()); console.log(task.getRestangularUrl());...