debian-mirror-gitlab/app/models/system_note_metadata.rb

24 lines
797 B
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
class SystemNoteMetadata < ActiveRecord::Base
2018-03-17 18:26:18 +05:30
# 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
2017-08-17 22:00:37 +05:30
ICON_TYPES = %w[
commit description merge confidential visible label assignee cross_reference
2017-09-10 17:25:29 +05:30
title time_tracking branch milestone discussion task moved
2018-03-17 18:26:18 +05:30
opened closed merged duplicate locked unlocked
2017-09-10 17:25:29 +05:30
outdated
2017-08-17 22:00:37 +05:30
].freeze
validates :note, presence: true
validates :action, inclusion: ICON_TYPES, allow_nil: true
belongs_to :note
end