diff options
author | Murali-P <murali.p@huawei.com> | 2018-03-29 17:46:39 +0530 |
---|---|---|
committer | Vitaly Emporopulo <Vitaliy.Emporopulo@amdocs.com> | 2018-04-30 13:51:11 +0000 |
commit | 72d62fb1aaaaeaed462083e232f3571b3bde6b08 (patch) | |
tree | 0691b2378b76270b7b7dbd8e32aff2afe895042f /openecomp-ui/src/nfvo-utils | |
parent | db69b87869091b774d6d87f3b6a9155d34d26b12 (diff) |
Integrate VNF Repository in Beijing release
Migrate the code
Change-Id: Ifccacf83634af32b034fd9c413e68f894f06d2f7
Issue-ID: VNFSDK-155
Signed-off-by: Murali-P <murali.p@huawei.com>
Diffstat (limited to 'openecomp-ui/src/nfvo-utils')
-rw-r--r-- | openecomp-ui/src/nfvo-utils/RestAPIUtil.js | 3 | ||||
-rw-r--r-- | openecomp-ui/src/nfvo-utils/i18n/en.json | 9 |
2 files changed, 12 insertions, 0 deletions
diff --git a/openecomp-ui/src/nfvo-utils/RestAPIUtil.js b/openecomp-ui/src/nfvo-utils/RestAPIUtil.js index 1a5817de66..6be5db765c 100644 --- a/openecomp-ui/src/nfvo-utils/RestAPIUtil.js +++ b/openecomp-ui/src/nfvo-utils/RestAPIUtil.js @@ -41,6 +41,9 @@ const CONTENT_MD5_HEADER = 'Content-MD5'; function applySecurity(options, data) { let headers = options.headers || (options.headers = {}); + if (options.isAnonymous) { + return; + } let authToken = localStorage.getItem(STORAGE_AUTH_KEY); if (authToken) { diff --git a/openecomp-ui/src/nfvo-utils/i18n/en.json b/openecomp-ui/src/nfvo-utils/i18n/en.json index cbc2031b4b..10ddb4202e 100644 --- a/openecomp-ui/src/nfvo-utils/i18n/en.json +++ b/openecomp-ui/src/nfvo-utils/i18n/en.json @@ -620,5 +620,14 @@ "VSPQuestionnaire/general/storageDataReplication/storageReplicationFrequency" : "Storage Replication Frequency", "VSPQuestionnaire/general/storageDataReplication/storageReplicationDestination" : "Storage Replication Destination", + "VNF List Title": "VNF List", + "VNF import failed title" : "VNF import failed", + "VNF import failed msg" : "VNF Repository Server is not responding or not reachable. Please check server address in configuration file.", + "VNF Header Name" : "Name", + "VNF Header Version" : "Version", + "VNF Header Vendor" : "Vendor", + "VNF Header Desc" : "Description", + "VNF Header Action" : "Action", + "GENERIC_ERROR": "An error has occurred. Please contact your System Administrator for further assistance." } |