3
0
corteza/app/options/plugins.cue
2022-02-08 09:13:56 +01:00

21 lines
382 B
CUE

package options
import (
"github.com/cortezaproject/corteza-server/codegen/schema"
)
plugins: schema.#optionsGroup & {
handle: "plugins"
options: {
Enabled: {
type: "bool"
defaultGoExpr: "true"
description: "Enable plugins"
}
Paths: {
description: "List of colon seperated paths or patterns where plugins could be found"
}
}
title: "Plugins"
}