The code powering m.abunchtell.com https://m.abunchtell.com
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.
 
 
 
 

11 lines
313 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. end