A music player that connects to your cloud/distributed storage.
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 10 lines 238 B view raw
1module Json.Encode.Ext exposing (..) 2 3import Json.Encode as Encode 4 5 6encodeMaybe : Maybe a -> (a -> Encode.Value) -> Encode.Value 7encodeMaybe maybe encoder = 8 maybe 9 |> Maybe.map encoder 10 |> Maybe.withDefault Encode.null