Skip to content

Instantly share code, notes, and snippets.

@alvarosanchez
Created June 2, 2014 01:55
Show Gist options
  • Save alvarosanchez/451f85714aeff95cb7d1 to your computer and use it in GitHub Desktop.
Save alvarosanchez/451f85714aeff95cb7d1 to your computer and use it in GitHub Desktop.
JSON.registerObjectMarshaller(Game) { Game game ->
[
id: game.id,
name: game.name,
categories: game.categories
]
}
JSON.registerObjectMarshaller(Category) { Category category ->
[
id: category.id,
name: category.name
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment