Created
November 6, 2015 01:45
-
-
Save arjan/9631392a34e02bd031d6 to your computer and use it in GitHub Desktop.
Automatically encode Timex datetimes as ISO in JSON
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defimpl Poison.Encoder, for: Timex.DateTime do | |
use Timex | |
def encode(d, _options) do | |
fmt = DateFormat.format!(d, "{ISO}") | |
"\"#{fmt}\"" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment