feat(pushover): add send a pushover notification action (#1373)

This commit is contained in:
Rıdvan Akca
2023-10-24 14:40:24 +03:00
committed by GitHub
parent 8c859f9408
commit fa02edfefc
9 changed files with 226 additions and 1 deletions

View File

@@ -266,7 +266,10 @@ export default defineConfig({
text: 'Pushover',
collapsible: true,
collapsed: true,
items: [{ text: 'Connection', link: '/apps/pushover/connection' }],
items: [
{ text: 'Actions', link: '/apps/pushover/actions' },
{ text: 'Connection', link: '/apps/pushover/connection' },
],
},
{
text: 'RSS',

View File

@@ -0,0 +1,12 @@
---
favicon: /favicons/pushover.svg
items:
- name: Send a Pushover Notification
desc: Generates a Pushover notification on the devices you have subscribed to.
---
<script setup>
import CustomListing from '../../components/CustomListing.vue'
</script>
<CustomListing />

View File

@@ -27,6 +27,7 @@ The following integrations are currently supported by Automatisch.
- [Pipedrive](/apps/pipedrive/triggers)
- [Placetel](/apps/placetel/triggers)
- [PostgreSQL](/apps/postgresql/actions)
- [Pushover](/apps/pushover/actions)
- [RSS](/apps/rss/triggers)
- [Salesforce](/apps/salesforce/triggers)
- [Scheduler](/apps/scheduler/triggers)