Joaquín Reñé
16 hours ago 78b085815b9873acdf178b2e9c9598d065fd40c0
securis/src/main/webapp/src/app/resources/license_types.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
....@@ -15,8 +16,8 @@
1516
1617 @Injectable()
1718 export class LicenseTypesService extends SeCurisResourceServices {
18
- constructor(http: Http, $L: LocaleService) {
19
- super($L, http, 'licensetype');
19
+ constructor(http: Http, $L: LocaleService, store: Locker) {
20
+ super($L, http, store, 'licensetype');
2021 }
2122
2223