You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
532 B

  1. # frozen_string_literal: true
  2. class Report < ApplicationRecord
  3. belongs_to :account
  4. belongs_to :target_account, class_name: 'Account'
  5. belongs_to :action_taken_by_account, class_name: 'Account'
  6. scope :unresolved, -> { where(action_taken: false) }
  7. scope :resolved, -> { where(action_taken: true) }
  8. def statuses
  9. Status.where(id: status_ids)
  10. end
  11. def media_attachments
  12. media_attachments = []
  13. statuses.each do |s|
  14. media_attachments.concat s.media_attachments
  15. end
  16. media_attachments
  17. end
  18. end