24 lines
351 B
CUE
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"
|
|
}
|