diff --git a/app/org/thp/cortex/models/Job.scala b/app/org/thp/cortex/models/Job.scala index 7c61e9a7d..54d920b9c 100644 --- a/app/org/thp/cortex/models/Job.scala +++ b/app/org/thp/cortex/models/Job.scala @@ -34,6 +34,7 @@ trait JobAttributes { val input = optionalAttribute("input", F.textFmt, "Data sent to worker") val fromCache = optionalAttribute("fromCache", F.booleanFmt, "Indicates if cache is used", O.form) val tpe = attribute("type", F.enumFmt(WorkerType), "", O.readonly) + val lbel = optionalAttribute("label", F.stringFmt, "Label of the job") } @Singleton