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/resources/organizations.ts |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/securis/src/main/webapp/src/app/resources/organizations.ts b/securis/src/main/webapp/src/app/resources/organizations.ts
index 27568b5..7d67518 100644
--- a/securis/src/main/webapp/src/app/resources/organizations.ts
+++ b/securis/src/main/webapp/src/app/resources/organizations.ts
@@ -1,6 +1,7 @@
 import { Observable } from 'rxjs/Rx';
 import { Injectable } from '@angular/core';
 import { Http, RequestOptions } from '@angular/http';
+import { Locker } from 'angular-safeguard';
 import { SeCurisResourceServices } from './base';
 import { LocaleService } from '../common/i18n';
 
@@ -13,8 +14,8 @@
 @Injectable()
 export class OrganizationsService extends SeCurisResourceServices {
 
-  constructor(http: Http, $L: LocaleService) {
-    super($L, http, 'organization');
+  constructor(http: Http, $L: LocaleService, store: Locker) {
+    super($L, http, store, 'organization');
   }
 
 

--
Gitblit v1.3.2