2
0

Use expect for nested params in settings/* controllers (#33673)

This commit is contained in:
Matt Jankowski
2025-01-22 03:49:52 -05:00
committed by GitHub
parent 8b24085f8e
commit e155aab39e
16 changed files with 131 additions and 8 deletions

View File

@@ -20,7 +20,7 @@ class Settings::ProfilesController < Settings::BaseController
private
def account_params
params.require(:account).permit(:display_name, :note, :avatar, :header, :bot, fields_attributes: [:name, :value])
params.expect(account: [:display_name, :note, :avatar, :header, :bot, fields_attributes: [:name, :value]])
end
def set_account