Welcome to mirror list, hosted at ThFree Co, Russian Federation.

vulnerability.rb « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0e3fe2cc8ac664025faa83387cb6d1cae5fc2533 (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
26
27
28
# 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) }

  validates :cvss, json_schema: { filename: "vulnerability_cvss_vectors", draft: 7 }
  attribute :cvss, :ind_jsonb

  def self.link_reference_pattern
    nil
  end

  def self.reference_prefix
    '[vulnerability:'
  end

  def self.reference_postfix
    ']'
  end
end

Vulnerability.prepend_mod