mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-13 23:48:55 +01:00
be8ae01ba4
Also: add advanced accounting to plans
8 lines
154 B
JavaScript
8 lines
154 B
JavaScript
'use strict';
|
|
|
|
Application.Services.factory('User', ['$resource', function ($resource) {
|
|
return $resource('/api/users/:id',
|
|
{ id: '@id' }
|
|
);
|
|
}]);
|