grafana/kinds/preferences/preferences_kind.cue
Ryan McKinley 0f0a53fbbb
Schemas: Add description to kinds metadata (#62638)
* add description to kinds

* omit empty
2023-01-31 17:54:22 -05:00

38 lines
754 B
CUE

package kind
name: "Preferences"
maturity: "merged"
description: "The user or team frontend preferences"
lineage: seqs: [
{
schemas: [
{
// UID for the home dashboard
homeDashboardUID?: string
// The timezone selection
// TODO: this should use the timezone defined in common
timezone?: string
// day of the week (sunday, monday, etc)
weekStart?: string
// light, dark, empty is default
theme?: string
// Selected language (beta)
language?: string
// Explore query history preferences
queryHistory?: #QueryHistoryPreference
#QueryHistoryPreference: {
// one of: '' | 'query' | 'starred';
homeTab?: string
} @cuetsy(kind="interface") //0.0
},
]
},
]