Sha256: 975f292bd0afb7d61141ca4dca6f7afec9405f70ca1ecd9f1b749b1d514e99cf
Contents?: true
Size: 290 Bytes
Versions: 10
Compression:
Stored size: 290 Bytes
Contents
class ContactObserver < ActiveRecord::Observer def after_save(contact) begin PartySearchFact.update_search_fact(contact.party) rescue end end def after_destroy(contact) begin PartySearchFact.update_search_fact(contact.party) rescue end end end
Version data entries
10 entries across 10 versions & 1 rubygems