3
0
Files
corteza/server/app/options/limit.cue
2022-11-17 17:33:24 +01:00

17 lines
292 B
CUE

package options
import (
"github.com/cortezaproject/corteza/server/codegen/schema"
)
limit: schema.#optionsGroup & {
handle: "limit"
options: {
system_users: {
type: "int"
description: "Maximum number of valid (not deleted, not suspended) users"
}
}
title: "Limits"
}