3
0
Files
corteza/app/options/action_log.cue
2022-08-01 18:22:55 +02:00

24 lines
351 B
CUE

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