diff options
Diffstat (limited to '')
| -rw-r--r-- | ufund-ui/src/app/services/auth.service.ts | 14 | 
1 files changed, 12 insertions, 2 deletions
diff --git a/ufund-ui/src/app/services/auth.service.ts b/ufund-ui/src/app/services/auth.service.ts index 6bc7145..b75c931 100644 --- a/ufund-ui/src/app/services/auth.service.ts +++ b/ufund-ui/src/app/services/auth.service.ts @@ -1,7 +1,8 @@ -import {Injectable} from '@angular/core'; +import {Injectable, Injector} from '@angular/core';  import {BehaviorSubject, firstValueFrom} from 'rxjs';  import {User} from '../models/User';  import {HttpClient, HttpHeaders} from '@angular/common/http'; +import {UsersService} from './users.service';  @Injectable({      providedIn: 'root' @@ -24,7 +25,9 @@ export class AuthService {      });      constructor( -        private http: HttpClient +        private http: HttpClient, +        // private userService: UsersService +        private injector: Injector      ) {}      async login(username: string, password: string) { @@ -42,6 +45,13 @@ export class AuthService {          // this.currentUser.subscribe(r => console.log("currentUser: "+r.username))      } +    async restoreLogin(username: string, key: string) { + +        const userService = this.injector.get(UsersService); +        this.apiKey = key; +        this.currentUser.next(await firstValueFrom(userService.getUser(username))) +    } +      getCurrentUserSubject() {          return this.currentUser;      }  | 
