You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 17, 2017. It is now read-only.
create_table :users do |t|
t.string :ethnicity, array: true
end
I can not pass parameters using params.require(:user).permit(:ethnicity). I instead need to do params.require(:user).permit(ethnicity: [])
—
Reply to this email directly or view it on GitHub.
Given the following:
I can not pass parameters using
params.require(:user).permit(:ethnicity)
. I instead need to doparams.require(:user).permit(ethnicity: [])
The text was updated successfully, but these errors were encountered: