12 lines
245 B
JavaScript
12 lines
245 B
JavaScript
netstix.factory('UsersResource', ['$http', function($http) {
|
|
return {
|
|
getData: function(id) {
|
|
id = typeof id !== 'undefined' ? id : '';
|
|
return $http({
|
|
url: 'users/' + id,
|
|
method: 'GET'
|
|
});
|
|
}
|
|
};
|
|
}]);
|