mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 18:42:42 +01:00
11 lines
276 B
JavaScript
11 lines
276 B
JavaScript
"use strict";
|
|
define(['app'], function () {
|
|
|
|
NzbDrone.Commands.Execute = function (name) {
|
|
return $.ajax({
|
|
type: 'POST',
|
|
url : NzbDrone.Constants.ApiRoot + '/command',
|
|
data: JSON.stringify({command: name})
|
|
});
|
|
};
|
|
}); |