MCPcopy Create free account
hub / github.com/aboutcode-org/vulnerablecode / latest_for_avids

Method latest_for_avids

vulnerabilities/models.py:2936–2937  ·  view source on GitHub ↗
(self, avids)

Source from the content-addressed store, hash-verified

2934 return self.filter(is_latest=True)
2935
2936 def latest_for_avids(self, avids):
2937 return self.filter(avid__in=avids).latest_per_avid()
2938
2939 def latest_for_avid_completely_imported_advisories(self, avid):
2940 return self.get(avid=avid, is_latest=True, _all_impacts_unfurled_at__isnull=False)

Calls 1

latest_per_avidMethod · 0.80