blob: 650e8942132b512016df080f300b58c2c7807db0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# frozen_string_literal: true
# Placeholder class for model that is implemented in EE
class Vulnerability < ApplicationRecord
include EachBatch
include IgnorableColumns
alias_attribute :vulnerability_id, :id
scope :with_projects, -> { includes(:project) }
def self.link_reference_pattern
nil
end
def self.reference_prefix
'[vulnerability:'
end
def self.reference_postfix
']'
end
end
Vulnerability.prepend_mod
|