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.

32 lines
1.0 KiB

  1. # frozen_string_literal: true
  2. # == Schema Information
  3. #
  4. # Table name: reports
  5. #
  6. # id :integer not null, primary key
  7. # account_id :integer not null
  8. # target_account_id :integer not null
  9. # status_ids :integer default([]), not null, is an Array
  10. # comment :text default(""), not null
  11. # action_taken :boolean default(FALSE), not null
  12. # created_at :datetime not null
  13. # updated_at :datetime not null
  14. # action_taken_by_account_id :integer
  15. #
  16. class Report < ApplicationRecord
  17. belongs_to :account
  18. belongs_to :target_account, class_name: 'Account'
  19. belongs_to :action_taken_by_account, class_name: 'Account'
  20. scope :unresolved, -> { where(action_taken: false) }
  21. scope :resolved, -> { where(action_taken: true) }
  22. def statuses
  23. Status.where(id: status_ids)
  24. end
  25. def media_attachments
  26. MediaAttachment.where(status_id: status_ids)
  27. end
  28. end