mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-26 09:37:12 +00:00
9 lines
197 B
JavaScript
9 lines
197 B
JavaScript
window.ApiRoot = '/api';
|
|
|
|
var statusText = $.ajax({
|
|
type : 'GET',
|
|
url : window.ApiRoot + '/system/status',
|
|
async: false
|
|
}).responseText;
|
|
|
|
window.ServerStatus = JSON.parse(statusText);
|