Skip to content

Instantly share code, notes, and snippets.

@rmosolgo
Created March 25, 2014 20:08
Show Gist options
  • Select an option

  • Save rmosolgo/9770244 to your computer and use it in GitHub Desktop.

Select an option

Save rmosolgo/9770244 to your computer and use it in GitHub Desktop.
override Model::toJSON to support accepts_nested_attributes_for
class App.Model extends Batman.Model
toJSON: ->
builtJSON = super
builtJSON.nested_items_attributes = builtJSON.nested_items
delete builtJSON.nested_items
builtJSON
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment