Guest User

Untitled

a guest
May 9th, 2018
876
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. return this.userService.login({username: username, password: password})
  2. .pipe(
  3. map(res => res.token),
  4. mergeMap(token => this.localStorage.setItem(AUTH_TOKEN_KEY, token)),
  5. tap(res => console.log(res)) // boolean true
  6. );
Add Comment
Please, Sign In to add comment