17 lines
292 B
CUE
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"
|
|
}
|