mirror of
https://github.com/Readarr/Readarr
synced 2025-12-18 06:13:38 +01: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);
|