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/license_types.ts | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/securis/src/main/webapp/src/app/resources/license_types.ts b/securis/src/main/webapp/src/app/resources/license_types.ts
index cc6b700..c12c90e 100644
--- a/securis/src/main/webapp/src/app/resources/license_types.ts
+++ b/securis/src/main/webapp/src/app/resources/license_types.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 lictype_example = { application_name: 'CurisIntegrity',
code: 'CIA2',
@@ -14,8 +15,8 @@
@Injectable()
export class LicenseTypesService extends SeCurisResourceServices {
- constructor(http: Http) {
- super(http, 'licensetype');
+ constructor(http: Http, $L: LocaleService) {
+ super($L, http, 'licensetype');
}
--
Gitblit v1.3.2