mirror of
https://github.com/fergalmoran/roboto-promoto.git
synced 2025-12-22 09:37:37 +00:00
20 lines
446 B
JavaScript
20 lines
446 B
JavaScript
'use strict';
|
|
|
|
angular.module('robotoPromotoApp')
|
|
.factory('User', function ($resource) {
|
|
return $resource('/api/users/:id', {
|
|
id: '@id'
|
|
}, { //parameters default
|
|
update: {
|
|
method: 'PUT',
|
|
params: {}
|
|
},
|
|
get: {
|
|
method: 'GET',
|
|
params: {
|
|
id:'me'
|
|
}
|
|
}
|
|
});
|
|
});
|