From 019aea40b652bf5b2f3b923053775c88f9f0cdbc Mon Sep 17 00:00:00 2001 From: To-om Date: Fri, 27 Jul 2018 10:24:20 +0200 Subject: [PATCH] #110 Add a label in active response --- app/org/thp/cortex/models/Job.scala | 1 + 1 file changed, 1 insertion(+) 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