Files
chatwoot/app/javascript/dashboard/helper/voice.js

13 lines
227 B
JavaScript

// Shared helpers for voice call UI
export const TERMINAL_STATUSES = [
'completed',
'busy',
'failed',
'no-answer',
'canceled',
'missed',
'ended',
];
export const isInbound = direction => direction === 'inbound';