mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-03-01 23:29:23 +01:00
21 lines
430 B
JavaScript
21 lines
430 B
JavaScript
/*
|
|
* decaffeinate suggestions:
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
*/
|
|
'use strict';
|
|
|
|
Application.Services.factory('Setting', ["$resource", $resource=>
|
|
$resource("/api/settings/:name",
|
|
{name: "@name"}, {
|
|
update: {
|
|
method: 'PUT'
|
|
},
|
|
query: {
|
|
isArray: false
|
|
}
|
|
}
|
|
)
|
|
|
|
]);
|