feat(asana): add create task action

This commit is contained in:
Rıdvan Akca
2024-06-07 11:39:38 +02:00
parent ab307cdee0
commit 061a9c6947
11 changed files with 556 additions and 2 deletions

View File

@@ -54,7 +54,11 @@ export default defineConfig({
text: 'Asana',
collapsible: true,
collapsed: true,
items: [{ text: 'Connection', link: '/apps/asana/connection' }],
items: [
{ text: 'Triggers', link: '/apps/asana/triggers' },
{ text: 'Actions', link: '/apps/asana/actions' },
{ text: 'Connection', link: '/apps/asana/connection' },
],
},
{
text: 'Carbone',

View File

@@ -0,0 +1,12 @@
---
favicon: /favicons/asana.svg
items:
- name: Create task
desc: Creates a new task.
---
<script setup>
import CustomListing from '../../components/CustomListing.vue'
</script>
<CustomListing />