26 lines
1,004 B
Ruby
26 lines
1,004 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module IncidentManagement
|
||
|
class TimelineEvent < ApplicationRecord
|
||
|
include CacheMarkdownField
|
||
|
|
||
|
self.table_name = 'incident_management_timeline_events'
|
||
|
|
||
|
cache_markdown_field :note,
|
||
|
pipeline: :'incident_management/timeline_event',
|
||
|
issuable_reference_expansion_enabled: true
|
||
|
|
||
|
belongs_to :project
|
||
|
belongs_to :author, class_name: 'User', foreign_key: :author_id
|
||
|
belongs_to :incident, class_name: 'Issue', foreign_key: :issue_id, inverse_of: :incident_management_timeline_events
|
||
|
belongs_to :updated_by_user, class_name: 'User', foreign_key: :updated_by_user_id
|
||
|
belongs_to :promoted_from_note, class_name: 'Note', foreign_key: :promoted_from_note_id
|
||
|
|
||
|
validates :project, :incident, :occurred_at, presence: true
|
||
|
validates :action, presence: true, length: { maximum: 128 }
|
||
|
validates :note, :note_html, presence: true, length: { maximum: 10_000 }
|
||
|
|
||
|
scope :order_occurred_at_asc, -> { reorder(occurred_at: :asc) }
|
||
|
end
|
||
|
end
|