fix: added exotel settings in portal
This commit is contained in:
parent
10bb3896a8
commit
c816ed11dd
6
frontend/src/components/Settings/ExotelSettings.vue
Normal file
6
frontend/src/components/Settings/ExotelSettings.vue
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<template>
|
||||||
|
<SettingsPage doctype="CRM Exotel Settings" class="p-8" />
|
||||||
|
</template>
|
||||||
|
<script setup>
|
||||||
|
import SettingsPage from '@/components/Settings/SettingsPage.vue'
|
||||||
|
</script>
|
||||||
@ -57,6 +57,7 @@ import ProfileSettings from '@/components/Settings/ProfileSettings.vue'
|
|||||||
import WhatsAppSettings from '@/components/Settings/WhatsAppSettings.vue'
|
import WhatsAppSettings from '@/components/Settings/WhatsAppSettings.vue'
|
||||||
import ERPNextSettings from '@/components/Settings/ERPNextSettings.vue'
|
import ERPNextSettings from '@/components/Settings/ERPNextSettings.vue'
|
||||||
import TwilioSettings from '@/components/Settings/TwilioSettings.vue'
|
import TwilioSettings from '@/components/Settings/TwilioSettings.vue'
|
||||||
|
import ExotelSettings from '@/components/Settings/ExotelSettings.vue'
|
||||||
import SidebarLink from '@/components/SidebarLink.vue'
|
import SidebarLink from '@/components/SidebarLink.vue'
|
||||||
import { usersStore } from '@/stores/users'
|
import { usersStore } from '@/stores/users'
|
||||||
import {
|
import {
|
||||||
@ -109,6 +110,11 @@ const tabs = computed(() => {
|
|||||||
icon: PhoneIcon,
|
icon: PhoneIcon,
|
||||||
component: markRaw(TwilioSettings),
|
component: markRaw(TwilioSettings),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
label: __('Exotel'),
|
||||||
|
icon: PhoneIcon,
|
||||||
|
component: markRaw(ExotelSettings),
|
||||||
|
},
|
||||||
{
|
{
|
||||||
label: __('WhatsApp'),
|
label: __('WhatsApp'),
|
||||||
icon: WhatsAppIcon,
|
icon: WhatsAppIcon,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user