feat(gmail): add send email action

This commit is contained in:
Rıdvan Akca
2024-04-23 11:54:56 +02:00
committed by Jakub P.
parent e316114402
commit 9d19d9c4e8
8 changed files with 306 additions and 2 deletions

View File

@@ -218,7 +218,11 @@ export default defineConfig({
text: 'Gmail',
collapsible: true,
collapsed: true,
items: [{ text: 'Connection', link: '/apps/gmail/connection' }],
items: [
{ text: 'Triggers', link: '/apps/gmail/triggers' },
{ text: 'Connection', link: '/apps/gmail/connection' },
{ text: 'Actions', link: '/apps/gmail/actions' },
],
},
{
text: 'Google Calendar',

View File

@@ -0,0 +1,12 @@
---
favicon: /favicons/gmail.svg
items:
- name: Send email
desc: Send a new email message.
---
<script setup>
import CustomListing from '../../components/CustomListing.vue'
</script>
<CustomListing />