mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 10:59:33 +00:00
Don't allow empty custom field values
This commit is contained in:
parent
f8c6d183ed
commit
7712e02d2d
@ -28,7 +28,10 @@ object CustomFieldType {
|
|||||||
value
|
value
|
||||||
|
|
||||||
def parseValue(value: String): Either[String, String] =
|
def parseValue(value: String): Either[String, String] =
|
||||||
Right(value)
|
Option(value)
|
||||||
|
.map(_.trim)
|
||||||
|
.filter(_.nonEmpty)
|
||||||
|
.toRight("Empty values are not allowed.")
|
||||||
}
|
}
|
||||||
|
|
||||||
case object Numeric extends CustomFieldType {
|
case object Numeric extends CustomFieldType {
|
||||||
@ -62,7 +65,11 @@ object CustomFieldType {
|
|||||||
value.toString
|
value.toString
|
||||||
|
|
||||||
def parseValue(value: String): Either[String, Boolean] =
|
def parseValue(value: String): Either[String, Boolean] =
|
||||||
Right(value.equalsIgnoreCase("true"))
|
Option(value)
|
||||||
|
.map(_.trim)
|
||||||
|
.filter(_.nonEmpty)
|
||||||
|
.toRight("Empty values not allowed")
|
||||||
|
.map(_.equalsIgnoreCase("true"))
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user