From 1a0491f2462d2c309bd8e310b22c11019a79ce1e Mon Sep 17 00:00:00 2001
From: rsanchez <rsanchez@curisit.net>
Date: Mon, 20 Mar 2017 16:02:14 +0000
Subject: [PATCH] #3527 fix - Added applications forms and metadata component
---
securis/src/main/webapp/src/app/resources/applications.ts | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/securis/src/main/webapp/src/app/resources/applications.ts b/securis/src/main/webapp/src/app/resources/applications.ts
index d214bed..ecfa6a8 100644
--- a/securis/src/main/webapp/src/app/resources/applications.ts
+++ b/securis/src/main/webapp/src/app/resources/applications.ts
@@ -2,6 +2,7 @@
import { Injectable } from '@angular/core';
import { Http, RequestOptions } from '@angular/http';
import { SeCurisResourceServices } from './base';
+import { LocaleService } from '../common/i18n';
var app_example = { code: 'CICS',
creation_timestamp: 1418384439000,
@@ -17,8 +18,8 @@
@Injectable()
export class ApplicationsService extends SeCurisResourceServices {
- constructor(http: Http) {
- super(http, 'application');
+ constructor(http: Http, $L: LocaleService) {
+ super($L, http, 'application');
}
--
Gitblit v1.3.2