We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I needed to set permit to allow the params for seo. Just a documentation issue. for some reason explicitly setting allowed items:
:seo_meta_attributes => []
did not work - seo_meta_attributes was still a unpermitted attribute. so i strong armed it, I guess less secure but its in the cms, so maybe ok:
controller do def permitted_params params.permit! end
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I needed to set permit to allow the params for seo. Just a documentation issue. for some reason explicitly setting allowed items:
:seo_meta_attributes => []
did not work - seo_meta_attributes was still a unpermitted attribute. so i strong armed it, I guess less secure but its in the cms, so maybe ok:
The text was updated successfully, but these errors were encountered: