mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-12-26 16:26:38 +01:00
8 lines
158 B
JavaScript
8 lines
158 B
JavaScript
var statusText = $.ajax({
|
|
type : 'GET',
|
|
url : '/api/system/status',
|
|
async: false
|
|
}).responseText;
|
|
|
|
window.ServerStatus = JSON.parse(statusText);
|