Make transaction enrichment opt-in for all users (#1552)

This commit is contained in:
Zach Gollwitzer
2024-12-17 09:58:08 -05:00
committed by GitHub
parent ba878c3d8b
commit 68617514b0
12 changed files with 46 additions and 35 deletions

View File

@@ -41,7 +41,7 @@ class UsersController < ApplicationController
def user_params
params.require(:user).permit(
:first_name, :last_name, :profile_image, :redirect_to, :delete_profile_image, :onboarded_at,
family_attributes: [ :name, :currency, :country, :locale, :date_format, :timezone, :id ]
family_attributes: [ :name, :currency, :country, :locale, :date_format, :timezone, :id, :data_enrichment_enabled ]
)
end