From 78b085815b9873acdf178b2e9c9598d065fd40c0 Mon Sep 17 00:00:00 2001
From: Joaquín Reñé <jrene@curisit.net>
Date: Mon, 20 Apr 2026 19:30:51 +0000
Subject: [PATCH] #4479 - upgrade SecurisServer to Java 21

---
 securis/src/main/webapp/src/app/footer.component.ts |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/securis/src/main/webapp/src/app/footer.component.ts b/securis/src/main/webapp/src/app/footer.component.ts
index 309167b..2018eaa 100644
--- a/securis/src/main/webapp/src/app/footer.component.ts
+++ b/securis/src/main/webapp/src/app/footer.component.ts
@@ -17,7 +17,7 @@
 
   ngOnInit(): void {
             //TODO Move to service
-      this.http.get("version", /* workaround to avoid OPTIONS method request*/ new BaseRequestOptions())
+      this.http.get("api/version", /* workaround to avoid OPTIONS method request*/ new BaseRequestOptions())
         .map((res) => <string>res.json().version)
         .subscribe(
           version => this.securisVersion = version,

--
Gitblit v1.3.2