1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-03 14:24:23 +01:00
fab-manager/app/assets/javascripts/services/setting.js
2018-11-27 15:16:23 +01:00

15 lines
268 B
JavaScript

'use strict';
Application.Services.factory('Setting', ['$resource', function ($resource) {
return $resource('/api/settings/:name',
{ name: '@name' }, {
update: {
method: 'PUT'
},
query: {
isArray: false
}
}
);
}]);