aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/services/cupboard.service.ts
diff options
context:
space:
mode:
authorsowgro <tpoke.ferrari@gmail.com>2025-04-04 22:58:26 -0400
committersowgro <tpoke.ferrari@gmail.com>2025-04-04 22:58:26 -0400
commitf70e86470f7083cda1949ff97556d9e39578ce1d (patch)
tree5cc8a3e1089409e10fd92896625605a7f8f6897b /ufund-ui/src/app/services/cupboard.service.ts
parentedfc9a8450d140ba1650b38e4b707000710b2faa (diff)
parent5a5d31896d79a736bce33b7d1aa7b3168ba308a9 (diff)
downloadJellySolutions-f70e86470f7083cda1949ff97556d9e39578ce1d.tar.gz
JellySolutions-f70e86470f7083cda1949ff97556d9e39578ce1d.tar.bz2
JellySolutions-f70e86470f7083cda1949ff97556d9e39578ce1d.zip
Merge branch 'main' into need-list-abstraction
# Conflicts: # ufund-ui/src/app/components/cupboard/cupboard.component.ts # ufund-ui/src/app/components/funding-basket/funding-basket.component.html # ufund-ui/src/app/components/funding-basket/funding-basket.component.ts # ufund-ui/src/app/components/need-list/need-list.component.html # ufund-ui/src/app/components/need-list/need-list.component.ts # ufund-ui/src/app/components/need-page/need-page.component.html
Diffstat (limited to 'ufund-ui/src/app/services/cupboard.service.ts')
-rw-r--r--ufund-ui/src/app/services/cupboard.service.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/ufund-ui/src/app/services/cupboard.service.ts b/ufund-ui/src/app/services/cupboard.service.ts
index 694bb94..a87dee2 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())
}
}