|
|
@ -33,6 +33,7 @@ class Report < ApplicationRecord |
|
|
|
belongs_to :assigned_account, class_name: 'Account', optional: true |
|
|
|
|
|
|
|
has_many :notes, class_name: 'ReportNote', foreign_key: :report_id, inverse_of: :report, dependent: :destroy |
|
|
|
has_many :notifications, as: :activity, dependent: :destroy |
|
|
|
|
|
|
|
scope :unresolved, -> { where(action_taken_at: nil) } |
|
|
|
scope :resolved, -> { where.not(action_taken_at: nil) } |
|
|
|