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
I have made a little hack to namespace save requests under model.name property. It monkey patches toJSON() during sync() call only and restores original method so you can use it as usual.
toJSON()
sync()
I have implemented it in CoffeeScript.
Check it here