b332a108f3
* Alerting: Notification history query API. First cut at defining a namespace scoped route on the historian.alerting app to query notification history. * Address review comments
27 lines
516 B
CUE
27 lines
516 B
CUE
package kinds
|
|
|
|
import (
|
|
"github.com/grafana/grafana/apps/alerting/historian/kinds/v0alpha1"
|
|
)
|
|
|
|
manifest: {
|
|
appName: "alerting-historian"
|
|
groupOverride: "historian.alerting.grafana.app"
|
|
versions: {
|
|
"v0alpha1": {
|
|
kinds: [dummyv0alpha1]
|
|
routes: v0alpha1.routes
|
|
}
|
|
}
|
|
}
|
|
|
|
dummyv0alpha1: {
|
|
kind: "Dummy"
|
|
schema: {
|
|
// Spec is the schema of our resource. The spec should include all the user-editable information for the kind.
|
|
spec: {
|
|
dummyField: int
|
|
}
|
|
}
|
|
}
|