feat(gmail): add send to trash action
This commit is contained in:
@@ -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];
|
||||
|
@@ -0,0 +1,30 @@
|
||||
import defineAction from '../../../../helpers/define-action.js';
|
||||
|
||||
export default defineAction({
|
||||
name: 'Send to trash',
|
||||
key: 'sendToTrash',
|
||||
description: 'Send an existing email message to the trash.',
|
||||
arguments: [
|
||||
{
|
||||
label: 'Message ID',
|
||||
key: 'messageId',
|
||||
type: 'string',
|
||||
required: true,
|
||||
description: '',
|
||||
variables: true,
|
||||
},
|
||||
],
|
||||
|
||||
async run($) {
|
||||
const { messageId } = $.step.parameters;
|
||||
const userId = $.auth.data.userId;
|
||||
|
||||
const { data } = await $.http.post(
|
||||
`/gmail/v1/users/${userId}/messages/${messageId}/trash`
|
||||
);
|
||||
|
||||
$.setActionItem({
|
||||
raw: data,
|
||||
});
|
||||
},
|
||||
});
|
Reference in New Issue
Block a user