Skip to content

Commit

Permalink
#365 Add sighted flag in observable
Browse files Browse the repository at this point in the history
  • Loading branch information
To-om committed Nov 13, 2017
1 parent 2686eb1 commit 5b721ff
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions thehive-backend/app/models/Artifact.scala
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ trait ArtifactAttributes { _: AttributeDef ⇒
val tlp: A[Long] = attribute("tlp", TlpAttributeFormat, "TLP level", 2L)
val tags: A[Seq[String]] = multiAttribute("tags", F.stringFmt, "Artifact tags")
val ioc: A[Boolean] = attribute("ioc", F.booleanFmt, "Artifact is an IOC", false)
val sighted: A[Boolean] = attribute("sighted", F.booleanFmt, "Artifact has been sighted on the local network", false)
val status: A[ArtifactStatus.Value] = attribute("status", F.enumFmt(ArtifactStatus), "Status of the artifact", ArtifactStatus.Ok)
val reports: A[String] = attribute("reports", F.textFmt, "Json object that contains all short reports", "{}", O.unaudited)
}
Expand Down

0 comments on commit 5b721ff

Please sign in to comment.