From 9dfe7f30a0e2b75d9abef93c570e22f5605a8a91 Mon Sep 17 00:00:00 2001 From: eikek Date: Tue, 31 Aug 2021 21:57:40 +0200 Subject: [PATCH] Remove unused contact kind --- .../scala/docspell/common/ContactKind.scala | 24 +++++++++---------- .../webapp/src/main/elm/Data/ContactType.elm | 8 ------- .../main/elm/Messages/Data/ContactType.elm | 6 ----- 3 files changed, 11 insertions(+), 27 deletions(-) diff --git a/modules/common/src/main/scala/docspell/common/ContactKind.scala b/modules/common/src/main/scala/docspell/common/ContactKind.scala index 152ce4aa..4c4ca692 100644 --- a/modules/common/src/main/scala/docspell/common/ContactKind.scala +++ b/modules/common/src/main/scala/docspell/common/ContactKind.scala @@ -16,22 +16,20 @@ sealed trait ContactKind { self: Product => object ContactKind { val all = List() - case object Phone extends ContactKind - case object Mobile extends ContactKind - case object Fax extends ContactKind - case object Email extends ContactKind - case object Docspell extends ContactKind - case object Website extends ContactKind + case object Phone extends ContactKind + case object Mobile extends ContactKind + case object Fax extends ContactKind + case object Email extends ContactKind + case object Website extends ContactKind def fromString(s: String): Either[String, ContactKind] = s.toLowerCase match { - case "phone" => Right(Phone) - case "mobile" => Right(Mobile) - case "fax" => Right(Fax) - case "email" => Right(Email) - case "docspell" => Right(Docspell) - case "website" => Right(Website) - case _ => Left(s"Not a state value: $s") + case "phone" => Right(Phone) + case "mobile" => Right(Mobile) + case "fax" => Right(Fax) + case "email" => Right(Email) + case "website" => Right(Website) + case _ => Left(s"Not a state value: $s") } def unsafe(str: String): ContactKind = diff --git a/modules/webapp/src/main/elm/Data/ContactType.elm b/modules/webapp/src/main/elm/Data/ContactType.elm index cc23f073..52d515ae 100644 --- a/modules/webapp/src/main/elm/Data/ContactType.elm +++ b/modules/webapp/src/main/elm/Data/ContactType.elm @@ -18,7 +18,6 @@ type ContactType | Mobile | Fax | Email - | Docspell | Website @@ -37,9 +36,6 @@ fromString str = "email" -> Just Email - "docspell" -> - Just Docspell - "website" -> Just Website @@ -62,9 +58,6 @@ toString ct = Email -> "Email" - Docspell -> - "Docspell" - Website -> "Website" @@ -76,5 +69,4 @@ all = , Email , Website , Fax - , Docspell ] diff --git a/modules/webapp/src/main/elm/Messages/Data/ContactType.elm b/modules/webapp/src/main/elm/Messages/Data/ContactType.elm index c361f297..af9d0a9d 100644 --- a/modules/webapp/src/main/elm/Messages/Data/ContactType.elm +++ b/modules/webapp/src/main/elm/Messages/Data/ContactType.elm @@ -28,9 +28,6 @@ gb ct = Email -> "Email" - Docspell -> - "Docspell" - Website -> "Website" @@ -50,8 +47,5 @@ de ct = Email -> "E-Mail" - Docspell -> - "Docspell" - Website -> "Webseite"