1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 00:11:46 +02:00
Radarr/UI/ServerStatus.js

10 lines
197 B
JavaScript
Raw Normal View History

window.ApiRoot = '/api';
var statusText = $.ajax({
2013-06-22 08:24:24 +02:00
type : 'GET',
url : window.ApiRoot + '/system/status',
2013-06-21 03:43:58 +02:00
async: false
}).responseText;
window.ServerStatus = JSON.parse(statusText);