diff options
author | Patrick Brady <patrick.brady@att.com> | 2020-03-26 16:14:17 -0700 |
---|---|---|
committer | Patrick Brady <patrick.brady@att.com> | 2020-03-26 16:14:53 -0700 |
commit | aa60945d2903ff60c4cdeebae76fbf569c91e444 (patch) | |
tree | 3569bf253b35703194e97ebb888caf152d3e39e0 /src/app/vnfs/build-artifacts/template-holder/param-name-value/param-name-value.component.ts | |
parent | 0141df20b1f533cd2acabdf7ea986aebab8d6868 (diff) |
Revert "Authentication support for cdt"
There appear to be problems with some fields saving in cdt
caused by this change.
This reverts commit 0141df20b1f533cd2acabdf7ea986aebab8d6868.
Change-Id: Iee40058de9870afdac608db7851fcfc206102822
Signed-off-by: Patrick Brady <patrick.brady@att.com>
Issue-ID: APPC-1854
Diffstat (limited to 'src/app/vnfs/build-artifacts/template-holder/param-name-value/param-name-value.component.ts')
-rw-r--r-- | src/app/vnfs/build-artifacts/template-holder/param-name-value/param-name-value.component.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/app/vnfs/build-artifacts/template-holder/param-name-value/param-name-value.component.ts b/src/app/vnfs/build-artifacts/template-holder/param-name-value/param-name-value.component.ts index ab1a7b3..f18fe6c 100644 --- a/src/app/vnfs/build-artifacts/template-holder/param-name-value/param-name-value.component.ts +++ b/src/app/vnfs/build-artifacts/template-holder/param-name-value/param-name-value.component.ts @@ -1,7 +1,7 @@ /* ============LICENSE_START========================================== =================================================================== -Copyright (C) 2018-2020 AT&T Intellectual Property. All rights reserved. +Copyright (C) 2018 AT&T Intellectual Property. All rights reserved. =================================================================== Copyright (C) 2018 IBM Intellectual Property. All rights reserved. =================================================================== @@ -77,8 +77,8 @@ export class GoldenConfigurationMappingComponent implements OnInit, OnDestroy { action: any = ''; artifactName: any = ''; enableMerge: boolean = false; - apiToken = sessionStorage['apiToken']; - userId = sessionStorage['userId']; + apiToken = localStorage['apiToken']; + userId = localStorage['userId']; identifier: any; public uploadTypes = [ @@ -435,4 +435,4 @@ export class GoldenConfigurationMappingComponent implements OnInit, OnDestroy { } } -} +}
\ No newline at end of file |