onasty/web/src/Data/Me.elm (view raw)
Smirnov Oleksandr
Smirnov Oleksandr
ss2316544@gmail.com scaffold frontend app (#134)..., 11 months ago
ss2316544@gmail.com scaffold frontend app (#134)..., 11 months ago
| 1 | module Data.Me exposing (Me, decode) |
| 2 | |
| 3 | import Json.Decode as Decode exposing (Decoder) |
| 4 | |
| 5 | |
| 6 | type alias Me = |
| 7 | { email : String |
| 8 | , createdAt : String -- TODO: upgrade to elm/time |
| 9 | } |
| 10 | |
| 11 | |
| 12 | decode : Decoder Me |
| 13 | decode = |
| 14 | Decode.map2 Me |
| 15 | (Decode.field "email" Decode.string) |
| 16 | (Decode.field "created_at" Decode.string) |