In a standard Rails controller, I\'d create a record like this:
@user = User.new(params[:user])
This assumes that the form parameters that come
If you are using the backbone-rails gem, looks like you can do
backbone-rails
var User = Backbone.Model.extend({ paramRoot: 'user' });
Around line 45 on github
Credit PL J and stream 7 on this link