The code powering m.abunchtell.com https://m.abunchtell.com
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

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