Chatwoot/app/drops/contact_drop.rb

10 lines
126 B
Ruby
Raw Normal View History

2022-12-15 15:40:44 +00:00
class ContactDrop < BaseDrop
def email
@obj.try(:email)
end
def phone_number
@obj.try(:phone_number)
end
end