Feature: Workflows (#5121)

This commit is contained in:
shamoon 2024-01-03 00:19:19 -08:00 committed by GitHub
parent 46e6be319f
commit 3b6ce16f1c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
54 changed files with 4980 additions and 2011 deletions

View file

@ -0,0 +1,15 @@
import { ObjectWithId } from './object-with-id'
import { WorkflowAction } from './workflow-action'
import { WorkflowTrigger } from './workflow-trigger'
export interface Workflow extends ObjectWithId {
name: string
order: number
enabled: boolean
triggers: WorkflowTrigger[]
actions: WorkflowAction[]
}