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

25 lines
366 B
CUE

package options
import (
"github.com/cortezaproject/corteza-server/codegen/schema"
)
actionLog: schema.#optionsGroup & {
handle: "actionLog"
options: {
enabled: {
type: "bool"
default: "true"
}
debug: {
type: "bool"
default: "false"
}
workflow_functions_enabled: {
type: "bool"
default: "false"
}
}
title: "Actionlog"
}