The code powering m.abunchtell.com https://m.abunchtell.com
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

11 řádky
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