mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-09-29 08:08:21 +00:00
18 lines
351 B
Elm
18 lines
351 B
Elm
{-
|
|
Copyright 2020 Eike K. & Contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
-}
|
|
|
|
|
|
module Util.Contact exposing (toString)
|
|
|
|
import Api.Model.Contact exposing (Contact)
|
|
|
|
|
|
toString : List Contact -> String
|
|
toString contacts =
|
|
List.map (\c -> c.kind ++ ": " ++ c.value) contacts
|
|
|> List.intersperse ", "
|
|
|> String.concat
|