mirror of https://github.com/grafana/grafana.git
18 lines
368 B
CUE
18 lines
368 B
CUE
package kinds
|
|
|
|
import (
|
|
"github.com/grafana/grafana/apps/alerting/notifications/kinds/v0alpha1"
|
|
)
|
|
timeIntervalKind: {
|
|
kind: "TimeInterval"
|
|
pluralName: "TimeIntervals"
|
|
}
|
|
|
|
timeIntervalv0alpha1: timeIntervalKind & {
|
|
schema: {
|
|
spec: v0alpha1.TimeIntervalSpec
|
|
}
|
|
// selectableFields: [ // TODO revisit when custom field selectors are supported
|
|
// "spec.name",
|
|
// ]
|
|
} |