diff options
| author | sowgro <tpoke.ferrari@gmail.com> | 2025-04-05 13:43:50 -0400 | 
|---|---|---|
| committer | sowgro <tpoke.ferrari@gmail.com> | 2025-04-05 13:43:50 -0400 | 
| commit | 7cedd8713d30fedcc9fc486a49d4804f37ab8765 (patch) | |
| tree | 829ff37b80a8502dd96574a12db983d83b86631c /ufund-ui/src/app/services | |
| parent | 09dabe1971f3891f472e24b5c038e4df481ee967 (diff) | |
| parent | 5a5d31896d79a736bce33b7d1aa7b3168ba308a9 (diff) | |
| download | JellySolutions-7cedd8713d30fedcc9fc486a49d4804f37ab8765.tar.gz JellySolutions-7cedd8713d30fedcc9fc486a49d4804f37ab8765.tar.bz2 JellySolutions-7cedd8713d30fedcc9fc486a49d4804f37ab8765.zip  | |
Merge branch 'main' into need-image
Diffstat (limited to '')
| -rw-r--r-- | ufund-ui/src/app/services/cupboard.service.ts | 4 | ||||
| -rw-r--r-- | ufund-ui/src/app/services/users.service.ts | 13 | 
2 files changed, 15 insertions, 2 deletions
diff --git a/ufund-ui/src/app/services/cupboard.service.ts b/ufund-ui/src/app/services/cupboard.service.ts index 9232c0c..1060476 100644 --- a/ufund-ui/src/app/services/cupboard.service.ts +++ b/ufund-ui/src/app/services/cupboard.service.ts @@ -47,7 +47,7 @@ export class CupboardService {          return this.http.delete<boolean>(`${this.url}/${id}`, this.httpOptions())      } -    checkoutNeed(id: number, quantity: number) { -        return this.http.put(`${this.url}/checkout`, {needID: id, amount: quantity}, this.httpOptions()) +    checkoutNeed(data: {needID: number, quantity: number}[]) { +        return this.http.put(`${this.url}/checkout`, data, this.httpOptions())      }  } diff --git a/ufund-ui/src/app/services/users.service.ts b/ufund-ui/src/app/services/users.service.ts index 4080ebf..080c394 100644 --- a/ufund-ui/src/app/services/users.service.ts +++ b/ufund-ui/src/app/services/users.service.ts @@ -21,6 +21,15 @@ export class UsersService {          })      }); +    httpOptions2 = () => ({ +        headers: new HttpHeaders({ +            'Content-Type': 'application/json', +            "jelly-api-key": this.authService.getApiKey() +        }), +        responseType: "text" as "json" // don't ask me how or why this works, bc i have no clue... +        // see the relevant angular bug report https://github.com/angular/angular/issues/18586 +    }); +      constructor(          private http: HttpClient,          private cupboardService: CupboardService, @@ -35,6 +44,10 @@ export class UsersService {          return this.http.get<User>(`${this.url}/${id}`, this.httpOptions())      } +    getCount(): Observable<number> { +        return this.http.get<number>(`${this.url}/count`, this.httpOptions2()) +    } +      updateUser(user: User): Observable<User> {          console.log(`${this.url}/${user.username}`, user, this.httpOptions)          return this.http.put<User>(`${this.url}/${user.username}`, user, this.httpOptions())  | 
