From 3564917a539bc5bba7e149b8c157e0bd633be23e Mon Sep 17 00:00:00 2001 From: sowgro Date: Tue, 18 Mar 2025 00:24:42 -0400 Subject: Fix problem in userService --- ufund-ui/src/app/components/need-list/need-list.component.ts | 4 ++-- ufund-ui/src/app/services/users.service.ts | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/ufund-ui/src/app/components/need-list/need-list.component.ts b/ufund-ui/src/app/components/need-list/need-list.component.ts index 953904c..34e849d 100644 --- a/ufund-ui/src/app/components/need-list/need-list.component.ts +++ b/ufund-ui/src/app/components/need-list/need-list.component.ts @@ -105,14 +105,14 @@ export class NeedListComponent { add(need: Need) { const currentUser = this.usersService.getCurrentUser(); if (currentUser) { - this.usersService.updateUser(currentUser.username).subscribe(() => { + this.usersService.updateUser(currentUser.username, currentUser).subscribe(() => { const currentUser = this.usersService.getCurrentUser(); if (currentUser && currentUser.basket) { currentUser.basket.push(need); } }); } - + } back() { diff --git a/ufund-ui/src/app/services/users.service.ts b/ufund-ui/src/app/services/users.service.ts index f3166cc..bd6fe5e 100644 --- a/ufund-ui/src/app/services/users.service.ts +++ b/ufund-ui/src/app/services/users.service.ts @@ -40,8 +40,9 @@ export class UsersService { return this.http.get(`${this.url}/${id}`, this.httpOptions) } - updateUser(id: string): Observable { - return this.http.put(`${this.url}/${id}`, this.httpOptions) + updateUser(id: string, user: User): Observable { + console.log(this.apiKey) + return this.http.put(`${this.url}/${id}`,user, this.httpOptions) } deleteUser(id: number): Observable { -- cgit v1.2.3