Skip to content

Instantly share code, notes, and snippets.

@mattburch
Created December 21, 2015 13:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattburch/c88c28b50a91b31faca0 to your computer and use it in GitHub Desktop.
Save mattburch/c88c28b50a91b31faca0 to your computer and use it in GitHub Desktop.
function dumpIssueCVE(title) {
var projectId = Session.get('projectId')
var issue = Issues.findOne({
'projectId': projectId,
'title': title,
})
issue.cves.forEach( function(cve) {
console.log(cve)
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment