7 Commits

Author SHA1 Message Date
arrelin
67f72e05a1 try to do better 2026-02-24 13:18:25 +03:00
arrelin
7dc0ebf3c1 try to do better 2026-02-24 13:09:49 +03:00
arrelin
e9a588e479 try to do better 2026-02-24 13:07:08 +03:00
arrelin
9eaa3de231 try to do better 2026-02-24 13:02:31 +03:00
arrelin
80f2fa55cd try to do better 2026-02-24 12:54:19 +03:00
38ffa260b3 Merge pull request 'try to do better' (#24) from feature/history into master
All checks were successful
Build and Publish Images / build-and-push (push) Successful in 28s
Reviewed-on: http://192.168.31.100:3847/Arrelin/family_budget/pulls/24
2026-02-12 15:58:17 +00:00
arrelin
b90e002f28 try to do better 2026-02-12 18:57:52 +03:00
2 changed files with 7 additions and 1 deletions

View File

@@ -29,3 +29,10 @@ jobs:
- name: Logout
run: docker logout 192.168.31.100:3847
- name: Trigger Coolify redeploy
run: |
curl -s -H "Authorization: Bearer ${{ secrets.COOLIFY_TOKEN }}" \
"http://192.168.31.100:8000/api/v1/deploy?uuid=msoc4skogk44ckc84wokocw0&force=true"

View File

@@ -153,7 +153,6 @@ impl ExpenseService {
.map(|((year, month), expenses)| {
let total_amount: Decimal = expenses
.iter()
.filter(|e| e.active)
.map(|e| e.amount)
.sum();
MonthlyExpenseGroup {