1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-13 23:48:55 +01:00
fab-manager/app/frontend/src/javascript/services/user.js
Sylvain be8ae01ba4 (ui) refactor plan form
Also: add advanced accounting to plans
2022-12-21 14:05:16 +01:00

8 lines
154 B
JavaScript

'use strict';
Application.Services.factory('User', ['$resource', function ($resource) {
return $resource('/api/users/:id',
{ id: '@id' }
);
}]);