Files
meanTorrent/modules/users/client/services/users.client.service.js
Christian Berendt e027f4025b Add missing newline at the end of text files
On Unix it is common to have a newline at the end of text files.
2015-02-16 21:39:55 +01:00

13 lines
249 B
JavaScript

'use strict';
// Users service used for communicating with the users REST endpoint
angular.module('users').factory('Users', ['$resource',
function($resource) {
return $resource('api/users', {}, {
update: {
method: 'PUT'
}
});
}
]);