The code powering m.abunchtell.com https://m.abunchtell.com
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

11 行
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