UNPKG

generator-sean

Version:
13 lines (11 loc) 261 B
'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' } }); } ]);