Add confirmation dialog for balance reconciliation creates and updates (#2457)

This commit is contained in:
Zach Gollwitzer
2025-07-15 18:58:40 -04:00
committed by GitHub
parent c1d98fe73b
commit 89cc64418e
13 changed files with 180 additions and 49 deletions

View File

@@ -15,7 +15,6 @@ class ValuationsControllerTest < ActionDispatch::IntegrationTest
post valuations_url, params: {
entry: {
amount: account.balance + 100,
currency: "USD",
date: Date.current.to_s,
account_id: account.id
}
@@ -37,7 +36,6 @@ class ValuationsControllerTest < ActionDispatch::IntegrationTest
patch valuation_url(@entry), params: {
entry: {
amount: 20000,
currency: "USD",
date: Date.current
}
}