mirror of
https://github.com/Sonarr/Sonarr
synced 2025-02-20 13:17:17 +00:00
7 lines
158 B
JavaScript
7 lines
158 B
JavaScript
var statusText = $.ajax({
|
|
type : 'GET',
|
|
url : '/api/system/status',
|
|
async: false
|
|
}).responseText;
|
|
|
|
window.ServerStatus = JSON.parse(statusText);
|