Here is my UserService
UserService
angular.module(\'userServices\', [\'ngResource\']).factory(\'User\', function($resource) { return $resource(\'/users/:u
I would suggest you make the following change to your update declaration:
{update: {method: 'PUT', data:{profile:'@profile'}, isArray: false}}
Check out the network tab on this plunker. -v.1.1.5
Here is the same example on stable version 1.0.7.