diff options
author | Mathieu Suen <mathieu.suen@sonarsource.com> | 2021-10-14 18:06:41 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2021-10-21 20:04:01 +0000 |
commit | 667542fa30857ee17c1317e19d67f62e62e44b44 (patch) | |
tree | 921b5837c2e68b86c2c4a5f9e35662bb007fc755 /server/sonar-web/src/main/js/api/system.ts | |
parent | 8ce408e17dd34e2401bd34394d5b21e8b790f836 (diff) | |
download | sonarqube-667542fa30857ee17c1317e19d67f62e62e44b44.tar.gz sonarqube-667542fa30857ee17c1317e19d67f62e62e44b44.zip |
SONAR-15507 Add a prompt to warn when SonarQube need an update
Diffstat (limited to 'server/sonar-web/src/main/js/api/system.ts')
-rw-r--r-- | server/sonar-web/src/main/js/api/system.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/server/sonar-web/src/main/js/api/system.ts b/server/sonar-web/src/main/js/api/system.ts index 9adf55ea9dc..7a613374ec3 100644 --- a/server/sonar-web/src/main/js/api/system.ts +++ b/server/sonar-web/src/main/js/api/system.ts @@ -35,6 +35,7 @@ export function getSystemStatus(): Promise<{ id: string; version: string; status export function getSystemUpgrades(): Promise<{ upgrades: SystemUpgrade[]; + latestLTS: string; updateCenterRefresh: string; }> { return getJSON('/api/system/upgrades'); |