Unable to create a resource with an array attribute
I've tried rewriting the create action many different ways and they all yield the same
NoSuchInput
error4 Replies
Solution
your create action doesn't accept the
columns
attributeI thought public attributes were all accepted by default
create
actions?they can, if you declare
create: :*
in the defaults
list
(this behaviour will be deprecated in the future, in favor of explicitly listing accepted attributes)
by default they don't accept anythingThat fixed it. Thank you for the solution and explanation!