feat: enable inbox configuration

This commit is contained in:
Shivam Mishra
2024-06-03 12:55:03 +05:30
parent df26e940da
commit 5c957054fe
2 changed files with 5 additions and 1 deletions
@@ -47,6 +47,9 @@ export default {
isAMicrosoftInbox() {
return this.isAnEmailChannel && this.inbox.provider === 'microsoft';
},
isAGoogleInbox() {
return this.isAnEmailChannel && this.inbox.provider === 'google';
},
isAPIInbox() {
return this.channelType === INBOX_TYPES.API;
},