budibase/packages/backend-core/src/events/events.ts

10 lines
310 B
TypeScript
Raw Normal View History

2022-05-05 09:32:14 +02:00
import { Event } from "@budibase/types"
import { processors } from "./processors"
2022-04-01 22:29:44 +02:00
export const publishEvent = (event: Event, properties: any) => {
// in future this should use async events
// via a queue. For now we can use sync as
// this is non-blocking
processors.processEvent(event, properties)
2022-04-01 22:29:44 +02:00
}