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

Remove currency conversion job call (#566)

This commit is contained in:
Zach Gollwitzer 2024-03-25 13:06:27 -04:00 committed by GitHub
parent 110855d077
commit d402f4d6ba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,17 +6,12 @@ class SettingsController < ApplicationController
def update
user_params_with_family = user_params
# Ensure we're only updating the family associated with the current user
if Current.family
family_attributes = user_params_with_family[:family_attributes].merge({ id: Current.family.id })
user_params_with_family[:family_attributes] = family_attributes
end
# If the family attribute for currency is changed, we need to convert all account balances to the new currency with the ConvertCurrencyJob job
if user_params_with_family[:family_attributes][:currency] != Current.family.currency
ConvertCurrencyJob.perform_later(Current.family)
end
if Current.user.update(user_params_with_family)
redirect_to root_path, notice: "Profile updated successfully."
else