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: c8f9e75a3895f416c7b1006ecbea59798534c2e0 (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
29
30
31
32
33
# frozen_string_literal: true

# Placeholder class for model that is implemented in EE
class Vulnerability < ApplicationRecord
  include EachBatch
  include IgnorableColumns

  ignore_column %i[due_date due_date_sourcing_milestone_id epic_id milestone_id
    last_edited_at last_edited_by_id start_date start_date_sourcing_milestone_id updated_by_id],
    remove_with: '16.9',
    remove_after: '2024-01-19'

  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