feat(youtube): add new video in channel trigger

This commit is contained in:
Rıdvan Akca
2023-10-17 13:00:43 +03:00
parent da4f8ab529
commit 4eace3fb7e
6 changed files with 70 additions and 1 deletions

View File

@@ -415,7 +415,10 @@ export default defineConfig({
text: 'Youtube',
collapsible: true,
collapsed: true,
items: [{ text: 'Connection', link: '/apps/youtube/connection' }],
items: [
{ text: 'Triggers', link: '/apps/youtube/triggers' },
{ text: 'Connection', link: '/apps/youtube/connection' },
],
},
],
'/': [

View File

@@ -0,0 +1,12 @@
---
favicon: /favicons/youtube.svg
items:
- name: New video in channel
desc: Triggers when a new video is published to a specific Youtube channel.
---
<script setup>
import CustomListing from '../../components/CustomListing.vue'
</script>
<CustomListing />

View File

@@ -43,3 +43,4 @@ The following integrations are currently supported by Automatisch.
- [Typeform](/apps/typeform/triggers)
- [Webhooks](/apps/webhooks/triggers)
- [WordPress](/apps/wordpress/triggers)
- [Youtube](/apps/youtube/triggers)