1
0
Fork 0
mirror of synced 2024-07-11 09:15:48 +12:00

remove middleware but check if prod in controller

This commit is contained in:
Peter Clement 2023-05-19 15:12:08 +01:00
parent d271bbdadb
commit 9b7972fdfd
2 changed files with 4 additions and 2 deletions

View file

@ -23,6 +23,7 @@ import {
} from "@budibase/types"
import { getActionDefinitions as actionDefs } from "../../automations/actions"
import sdk from "../../sdk"
import { isProdAppID } from "@budibase/backend-core/src/db"
async function getActionDefinitions() {
return removeDeprecated(await actionDefs())
@ -265,7 +266,6 @@ export async function trigger(ctx: BBContext) {
let automation = await db.get(ctx.params.id)
let hasCollectStep = sdk.automations.utils.checkForCollectStep(automation)
if (hasCollectStep) {
const response: AutomationResults = await triggers.externalTrigger(
automation,
@ -281,6 +281,9 @@ export async function trigger(ctx: BBContext) {
)
ctx.body = collectedValue?.outputs
} else {
if (ctx.appId && !isProdAppID(ctx.appId)) {
ctx.throw(400, "Only apps in production support this endpoint")
}
await triggers.externalTrigger(automation, {
...ctx.request.body,
appId: ctx.appId,

View file

@ -65,7 +65,6 @@ router
)
.post(
"/api/automations/:id/trigger",
appInfoMiddleware({ appType: AppType.PROD }),
paramResource("id"),
authorized(
permissions.PermissionType.AUTOMATION,