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

system_note_metadata.rb « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1c2161accc4f76645bfd25689e0230e1d9018ed5 (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
class SystemNoteMetadata < ActiveRecord::Base
  # These notes's action text might contain a reference that is external.
  # We should always force a deep validation upon references that are found
  # in this note type.
  # Other notes can always be safely shown as all its references are
  # in the same project (i.e. with the same permissions)
  TYPES_WITH_CROSS_REFERENCES = %w[
    commit cross_reference
    close duplicate
  ].freeze

  ICON_TYPES = %w[
    commit description merge confidential visible label assignee cross_reference
    title time_tracking branch milestone discussion task moved
    opened closed merged duplicate locked unlocked
    outdated
  ].freeze

  validates :note, presence: true
  validates :action, inclusion: { in: :icon_types }, allow_nil: true

  belongs_to :note

  def icon_types
    ICON_TYPES
  end
end