We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae20616 commit af39ac2Copy full SHA for af39ac2
app_node_proj/vm_app/models.py
@@ -20,6 +20,7 @@ class Resource(EmbeddedDocument):
20
resource = StringField()
21
resource_criticality = IntField()
22
resource_type = StringField(max_length=200, choices=CHOICES["resource_type"])
23
+ # EmbeddedDocumentList is not a scalable way to store findings but is used because it is an interesting academic challenge for doing updates
24
findings = EmbeddedDocumentListField(Finding)
25
26
def risk_score(self):
0 commit comments