mirror of
https://github.com/grafana/grafana.git
synced 2024-12-02 13:39:19 -06:00
26 lines
643 B
Go
26 lines
643 B
Go
package dtos
|
|
|
|
type IndexViewData struct {
|
|
User *CurrentUser
|
|
Settings map[string]interface{}
|
|
AppUrl string
|
|
AppSubUrl string
|
|
GoogleAnalyticsId string
|
|
GoogleTagManagerId string
|
|
MainNavLinks []*NavLink
|
|
}
|
|
|
|
type PluginCss struct {
|
|
Light string `json:"light"`
|
|
Dark string `json:"dark"`
|
|
}
|
|
|
|
type NavLink struct {
|
|
Text string `json:"text,omitempty"`
|
|
Icon string `json:"icon,omitempty"`
|
|
Img string `json:"img,omitempty"`
|
|
Url string `json:"url,omitempty"`
|
|
Divider bool `json:"divider,omitempty"`
|
|
Children []*NavLink `json:"children,omitempty"`
|
|
}
|