Joaquín Reñé
16 hours ago 78b085815b9873acdf178b2e9c9598d065fd40c0
securis/src/main/webapp/src/app/resources/organizations.ts
....@@ -1,6 +1,7 @@
11 import { Observable } from 'rxjs/Rx';
22 import { Injectable } from '@angular/core';
33 import { Http, RequestOptions } from '@angular/http';
4
+import { Locker } from 'angular-safeguard';
45 import { SeCurisResourceServices } from './base';
56 import { LocaleService } from '../common/i18n';
67
....@@ -13,8 +14,8 @@
1314 @Injectable()
1415 export class OrganizationsService extends SeCurisResourceServices {
1516
16
- constructor(http: Http, $L: LocaleService) {
17
- super($L, http, 'organization');
17
+ constructor(http: Http, $L: LocaleService, store: Locker) {
18
+ super($L, http, store, 'organization');
1819 }
1920
2021