35 lines
482 B
CUE
35 lines
482 B
CUE
package compose
|
|
|
|
import (
|
|
"github.com/cortezaproject/corteza-server/codegen/schema"
|
|
)
|
|
|
|
chart: schema.#resource & {
|
|
parents: [
|
|
{handle: "namespace"},
|
|
]
|
|
|
|
rbac: {
|
|
operations: {
|
|
"read": {}
|
|
"update": {}
|
|
"delete": {}
|
|
}
|
|
}
|
|
|
|
locale: {
|
|
extended: true
|
|
|
|
keys: {
|
|
reportsYaxisLabel: {
|
|
path: ["yAxis", "label"]
|
|
customHandler: true
|
|
}
|
|
reportsMetricLabel: {
|
|
path: ["metrics", {part: "metricID", var: true}, "label"]
|
|
customHandler: true
|
|
}
|
|
}
|
|
}
|
|
}
|