1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-24 07:39:39 +02:00

Change default valuation currency to that of the related account, not family (#728)

This commit is contained in:
Jakub Kottnauer 2024-05-08 21:29:56 +02:00 committed by GitHub
parent 9ede14d23b
commit 1108e45596
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 1 deletions

View file

@ -4,7 +4,7 @@ class ValuationsController < ApplicationController
@account = Current.family.accounts.find(params[:account_id])
# TODO: placeholder logic until we have a better abstraction for trends
@valuation = @account.valuations.new(valuation_params.merge(currency: Current.family.currency))
@valuation = @account.valuations.new(valuation_params.merge(currency: @account.currency))
if @valuation.save
@valuation.account.sync_later(@valuation.date)