mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
17 lines
388 B
JavaScript
17 lines
388 B
JavaScript
'use strict';
|
|
define({
|
|
Execute: function (name, properties) {
|
|
var data = { command: name };
|
|
|
|
if (properties) {
|
|
$.extend(data, properties);
|
|
}
|
|
|
|
return $.ajax({
|
|
type: 'POST',
|
|
url : window.ApiRoot + '/command',
|
|
data: JSON.stringify(data)
|
|
});
|
|
}
|
|
});
|