18 lines
385 B
Ruby
18 lines
385 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
# Placeholder class for model that is implemented in EE
|
||
|
# It reserves '+' as a reference prefix, but the table does not exist in FOSS
|
||
|
class Vulnerability < ApplicationRecord
|
||
|
include IgnorableColumns
|
||
|
|
||
|
def self.reference_prefix
|
||
|
'+'
|
||
|
end
|
||
|
|
||
|
def self.reference_prefix_escaped
|
||
|
'+'
|
||
|
end
|
||
|
end
|
||
|
|
||
|
Vulnerability.prepend_if_ee('EE::Vulnerability')
|