15 lines
401 B
Ruby
15 lines
401 B
Ruby
|
class Connection < ApplicationRecord
|
||
|
belongs_to :user
|
||
|
belongs_to :contact, class_name: 'User', foreign_key: 'contact_id'
|
||
|
|
||
|
after_create :create_inverted_connection
|
||
|
|
||
|
private
|
||
|
|
||
|
def create_inverted_connection
|
||
|
unless Connection.where('user_id = ? and contact_id = ?', self.contact.id, self.user.id).length > 0
|
||
|
Connection.create!(user: self.contact, contact: self.user)
|
||
|
end
|
||
|
end
|
||
|
end
|