Skip to content

Commit

Permalink
chore: updated readme with exotel integration
Browse files Browse the repository at this point in the history
  • Loading branch information
shariquerik committed Jan 20, 2025
1 parent 5de2bb0 commit cb2cb6d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ The motivation behind building Frappe CRM stems from the need for a simple, cust
### Integrations

- **Twilio:** Integrate Twilio to make and receive calls from the CRM. You can also record calls. It is a built-in integration.
- **Exotel:** Integrate Exotel to make and receive calls via agents mobile phone from the CRM. You can also record calls. It is a built-in integration.
- **WhatsApp:** Integrate WhatsApp to send and receive messages from the CRM. [Frappe WhatsApp](https://github.com/shridarpatil/frappe_whatsapp) is used for this integration.
- **ERPNext:** Integrate with [ERPNext](https://erpnext.com) to extend the CRM capabilities to include invoicing, accounting, and more.

Expand Down
11 changes: 6 additions & 5 deletions frontend/src/components/Telephony/ExotelCallUI.vue
Original file line number Diff line number Diff line change
Expand Up @@ -286,11 +286,6 @@ const contact = ref({
mobile_no: '',
})
watch(phoneNumber, (value) => {
if (!value) return
getContact.fetch()
})
const getContact = createResource({
url: 'crm.integrations.api.get_contact_by_phone_number',
makeParams() {
Expand All @@ -303,6 +298,12 @@ const getContact = createResource({
},
})
watch(phoneNumber, (value) => {
if (!value) return
getContact.fetch()
}, { immediate: true })
const dirty = ref(false)
const note = ref({
Expand Down

0 comments on commit cb2cb6d

Please sign in to comment.