feat(dashboard): #82 add chart for sum of account and savings
All checks were successful
Build Docker Image / Build-Docker-Image (push) Successful in 5m21s
Build and Push Docker Image / Build-And-Push-Docker-Image (push) Successful in 5m33s

This commit was merged in pull request #190.
This commit is contained in:
2025-06-19 13:28:49 +02:00
parent c9bf320611
commit 3120c19669
15 changed files with 248 additions and 174 deletions

View File

@@ -756,7 +756,7 @@ func TestIntegrationAuth(t *testing.T) {
VALUES (?, ?, datetime(), datetime("now", "+1 day"))`, sessionId, userId)
require.NoError(t, err)
req, err := http.NewRequestWithContext(ctx, http.MethodGet, basePath+"/", nil)
req, err := http.NewRequestWithContext(ctx, http.MethodGet, basePath+"/dashboard", nil)
require.NoError(t, err)
req.Header.Set("Cookie", "id="+sessionId)
resp, err := httpClient.Do(req)