1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-18 07:52:23 +01:00
2020-04-14 11:39:26 +02:00

11 lines
202 B
JavaScript

'use strict';
Application.Services.factory('Version', ['$resource', function ($resource) {
return $resource('/api/version/:origin',
{}, {
get: {
method: 'POST'
}
});
}]);