| .. | .. |
|---|
| 1 | 1 | import { Observable } from 'rxjs/Rx'; |
|---|
| 2 | 2 | import { Injectable } from '@angular/core'; |
|---|
| 3 | 3 | import { Http, RequestOptions } from '@angular/http'; |
|---|
| 4 | +import { Locker } from 'angular-safeguard'; |
|---|
| 4 | 5 | import { SeCurisResourceServices } from './base'; |
|---|
| 5 | 6 | import { LocaleService } from '../common/i18n'; |
|---|
| 6 | 7 | |
|---|
| .. | .. |
|---|
| 18 | 19 | |
|---|
| 19 | 20 | @Injectable() |
|---|
| 20 | 21 | export class ApplicationsService extends SeCurisResourceServices { |
|---|
| 21 | | - constructor(http: Http, $L: LocaleService) { |
|---|
| 22 | | - super($L, http, 'application'); |
|---|
| 22 | + constructor(http: Http, $L: LocaleService, store: Locker) { |
|---|
| 23 | + super($L, http, store, 'application'); |
|---|
| 23 | 24 | } |
|---|
| 24 | 25 | |
|---|
| 25 | 26 | |
|---|