chore: voice call campaigns

This commit is contained in:
Sojan
2025-05-05 23:50:34 -07:00
parent 414daff4f1
commit 74cd639574
22 changed files with 803 additions and 16 deletions

View File

@@ -117,6 +117,12 @@ export const getters = {
(item.channel_type === INBOX_TYPES.TWILIO && item.medium === 'sms')
);
},
getVoiceInboxes($state) {
return $state.records.filter(
item =>
item.channel_type === INBOX_TYPES.VOICE
);
},
dialogFlowEnabledInboxes($state) {
return $state.records.filter(
item => item.channel_type !== INBOX_TYPES.EMAIL