3
0
Files
corteza/app/options/limit.cue
2022-01-29 12:18:00 +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"
}