feat(gmail): add send to trash action

This commit is contained in:
Rıdvan Akca
2024-04-24 13:24:13 +02:00
committed by Jakub P.
parent 0f76470656
commit 81c9ea8d97
3 changed files with 34 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
import createDraft from './create-draft/index.js';
import replyToEmail from './reply-to-email/index.js';
import sendEmail from './send-email/index.js';
import sendToTrash from './send-to-trash/index.js';
export default [createDraft, replyToEmail, sendEmail];
export default [createDraft, replyToEmail, sendEmail, sendToTrash];