Merge branch 'master' into chore/allow-serving-old-apps-locally

This commit is contained in:
Adria Navarro 2024-10-22 17:54:16 +02:00 committed by GitHub
commit 7124a754f1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 1 deletions

View File

@ -1,4 +1,5 @@
<script> <script>
import { goto } from "@roxi/routify"
import { automationStore } from "stores/builder" import { automationStore } from "stores/builder"
import { import {
notifications, notifications,
@ -32,11 +33,12 @@
triggerVal.stepId, triggerVal.stepId,
triggerVal triggerVal
) )
await automationStore.actions.create(name, trigger) const automation = await automationStore.actions.create(name, trigger)
if (triggerVal.stepId === TriggerStepID.WEBHOOK) { if (triggerVal.stepId === TriggerStepID.WEBHOOK) {
webhookModal.show() webhookModal.show()
} }
notifications.success(`Automation ${name} created`) notifications.success(`Automation ${name} created`)
$goto(`../automation/${automation._id}`)
} catch (error) { } catch (error) {
notifications.error("Error creating automation") notifications.error("Error creating automation")
} }