Lidarr/UI/Commands/CommandController.js

18 lines
394 B
JavaScript
Raw Normal View History

2013-06-22 06:24:24 +00:00
'use strict';
2013-05-11 23:39:32 +00:00
define(['app'], function () {
2013-06-13 02:55:11 +00:00
NzbDrone.Commands.Execute = function (name, properties) {
var data = { command: name };
2013-06-24 04:37:55 +00:00
if (properties) {
2013-06-13 02:55:11 +00:00
$.extend(data, properties);
}
2013-05-11 23:39:32 +00:00
return $.ajax({
type: 'POST',
url : NzbDrone.Constants.ApiRoot + '/command',
2013-06-13 02:55:11 +00:00
data: JSON.stringify(data)
2013-05-11 23:39:32 +00:00
});
};
2013-06-22 06:24:24 +00:00
});