3
0
Files
corteza/app/options/workflow.cue
2022-01-29 12:18:00 +01:00

28 lines
604 B
CUE

package options
import (
"github.com/cortezaproject/corteza-server/codegen/schema"
)
workflow: schema.#optionsGroup & {
handle: "workflow"
options: {
register: {
type: "bool"
default: "true"
description: "Registers enabled and valid workflows and executes them when triggered"
}
exec_debug: {
type: "bool"
default: "false"
description: "Enables verbose logging for workflow execution"
}
call_stack_size: {
type: "int"
default: "16"
description: "Defines the maximum call stack size between workflows"
}
}
title: "Workflow"
}