chore: disable read status for voice channel

This commit is contained in:
Sojan
2025-05-13 04:05:01 -07:00
parent e06525181b
commit 1e9180d3cd
2 changed files with 8 additions and 0 deletions
@@ -78,6 +78,10 @@ export const useInbox = () => {
return inbox.value.provider || '';
});
const isAVoiceChannel = computed(() => {
return channelType.value === INBOX_TYPES.VOICE;
});
const isAMicrosoftInbox = computed(() => {
return isAnEmailChannel.value && inbox.value.provider === 'microsoft';
});
@@ -142,5 +146,6 @@ export const useInbox = () => {
is360DialogWhatsAppChannel,
isAnEmailChannel,
isAnInstagramChannel,
isAVoiceChannel,
};
};