Authentication support for cdt
[appc/cdt.git] / src / app / vnfs / LoginGuardService / Login-guard-service.ts
index 1e7e752..1938030 100644 (file)
@@ -1,7 +1,7 @@
 /*
 ============LICENSE_START==========================================
 ===================================================================
-Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
+Copyright (C) 2018-2020 AT&T Intellectual Property. All rights reserved.
 
 Copyright (C) 2018 IBM.
 ===================================================================
@@ -35,7 +35,7 @@ export class LoginGuardService implements CanActivate {
 
     canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): boolean {
 
-        let userId = localStorage['userId'];
+        let userId = sessionStorage['userId'];
         if (userId != null && userId != undefined && userId != '') {
             return true;
         } else {
@@ -44,4 +44,4 @@ export class LoginGuardService implements CanActivate {
         }
 
     }
-}
\ No newline at end of file
+}