16 lines
402 B
Ruby
16 lines
402 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Banzai
|
|
module ReferenceParser
|
|
# The actual parser is implemented in the EE mixin
|
|
class VulnerabilityParser < IssuableParser
|
|
self.reference_type = :vulnerability
|
|
|
|
def records_for_nodes(_nodes)
|
|
{}
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
Banzai::ReferenceParser::VulnerabilityParser.prepend_mod_with('Banzai::ReferenceParser::VulnerabilityParser')
|