From 94bc5cbb482c8499e4d19bc149c65b1c0da0af97 Mon Sep 17 00:00:00 2001 From: vlad Date: Wed, 5 Jul 2017 20:26:35 -0700 Subject: Label names are not used by EVLS anymore (PDS-1225) --- .../pdsuidomain/formats/json/export/ApiExportPatientLabel.scala | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/main/scala/xyz/driver/pdsuidomain/formats/json/export/ApiExportPatientLabel.scala') diff --git a/src/main/scala/xyz/driver/pdsuidomain/formats/json/export/ApiExportPatientLabel.scala b/src/main/scala/xyz/driver/pdsuidomain/formats/json/export/ApiExportPatientLabel.scala index 3deccbf..1d5a171 100644 --- a/src/main/scala/xyz/driver/pdsuidomain/formats/json/export/ApiExportPatientLabel.scala +++ b/src/main/scala/xyz/driver/pdsuidomain/formats/json/export/ApiExportPatientLabel.scala @@ -4,19 +4,17 @@ import play.api.libs.functional.syntax._ import play.api.libs.json.{Format, JsPath} import xyz.driver.pdsuidomain.entities.export.patient.ExportPatientLabel -final case class ApiExportPatientLabel(id: String, labelName: String, evidences: List[ApiExportPatientLabelEvidence]) +final case class ApiExportPatientLabel(id: String, evidences: List[ApiExportPatientLabelEvidence]) object ApiExportPatientLabel { implicit val format: Format[ApiExportPatientLabel] = ( (JsPath \ "labelId").format[String] and - (JsPath \ "labelName").format[String] and (JsPath \ "evidence").format[List[ApiExportPatientLabelEvidence]] )(ApiExportPatientLabel.apply, unlift(ApiExportPatientLabel.unapply)) def fromDomain(label: ExportPatientLabel) = ApiExportPatientLabel( id = label.id.toString, - labelName = label.name, evidences = label.evidences.map(ApiExportPatientLabelEvidence.fromDomain) ) } -- cgit v1.2.3