Support multi-currency transfers (#1175)

This commit is contained in:
Zach Gollwitzer
2024-09-13 11:45:19 -04:00
committed by GitHub
parent c28dd8f940
commit 949d3d80fa
10 changed files with 5 additions and 18 deletions

View File

@@ -40,6 +40,6 @@ class Account::TransfersController < ApplicationController
end
def transfer_params
params.require(:account_transfer).permit(:from_account_id, :to_account_id, :amount, :currency, :date, :name)
params.require(:account_transfer).permit(:from_account_id, :to_account_id, :amount, :date, :name)
end
end