Skip to content

Instantly share code, notes, and snippets.

@sorentwo
Created February 18, 2015 16:58
Show Gist options
  • Save sorentwo/2f8561482b5c66505633 to your computer and use it in GitHub Desktop.
Save sorentwo/2f8561482b5c66505633 to your computer and use it in GitHub Desktop.
Custom JSON encoding
defimpl Poison.Encoder, for: App do
def encode(app, options) do
Poison.Encoder.Map.encode(%{id: app.id, name: app.name}, options)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment