feat(dashboard): #82 add chart for sum of account and savings
Some checks failed
Build Docker Image / Build-Docker-Image (push) Has been cancelled

This commit is contained in:
2025-06-19 13:28:49 +02:00
parent 3b3343bdb5
commit c94a9447f2
13 changed files with 241 additions and 173 deletions

View File

@@ -16,3 +16,9 @@ type DashboardMonthlySummary struct {
SumOfSavings int64
SumOfAccounts int64
}
type DashboardMainChartEntry struct {
Day time.Time
Value int64
Savings int64
}