From 3bef72c7177c4744581b2d66e61d54012ca8ffd5 Mon Sep 17 00:00:00 2001 From: Jonas Winkler Date: Mon, 2 Nov 2020 17:57:33 +0100 Subject: [PATCH] small refactor --- src-ui/src/app/services/auth.service.ts | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/src-ui/src/app/services/auth.service.ts b/src-ui/src/app/services/auth.service.ts index 1f2f1bdf3..dc31a9bbd 100644 --- a/src-ui/src/app/services/auth.service.ts +++ b/src-ui/src/app/services/auth.service.ts @@ -54,13 +54,9 @@ export class AuthService { map(tokenResponse => { this.currentUsername = username this.token = tokenResponse.token - if (rememberMe) { - localStorage.setItem('auth-service:token', this.token) - localStorage.setItem('auth-service:currentUsername', this.currentUsername) - } else { - sessionStorage.setItem('auth-service:token', this.token) - sessionStorage.setItem('auth-service:currentUsername', this.currentUsername) - } + let storage = rememberMe ? localStorage : sessionStorage + storage.setItem('auth-service:token', this.token) + storage.setItem('auth-service:currentUsername', this.currentUsername) return true }) )