From 8886442e8995e360c9fbec89fd0039a6646c08e3 Mon Sep 17 00:00:00 2001 From: Bel LaPointe <153096461+breel-render@users.noreply.github.com> Date: Sat, 20 Jul 2024 11:30:42 -0600 Subject: [PATCH] /api/transactions returns .transactions [][]Delta --- cmd/http/router.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/http/router.go b/cmd/http/router.go index 0fc6cfa..af85e7f 100644 --- a/cmd/http/router.go +++ b/cmd/http/router.go @@ -103,6 +103,7 @@ func (router Router) APITransactions(w http.ResponseWriter, r *http.Request) { Like(`^(Zach|Bel|House[^:]*:Debts:)`). Group(`^[^:]*`). WithBPIs(bpis), + "transactions": houseRelatedDeltas.Transactions(), }) }