mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-08 15:59:51 +00:00
Features: - Upload PDF files let them analyze - Manage meta data and items - See processing in webapp
10 lines
247 B
Elm
10 lines
247 B
Elm
module Util.Contact exposing (..)
|
|
|
|
import Api.Model.Contact exposing (Contact)
|
|
|
|
toString: List Contact -> String
|
|
toString contacts =
|
|
List.map (\c -> c.kind ++ ": " ++ c.value) contacts
|
|
|> List.intersperse ", "
|
|
|> String.concat
|