2015-11-20 02:43:10 -06:00
|
|
|
package dtos
|
|
|
|
|
2020-12-07 04:23:53 -06:00
|
|
|
import (
|
2022-09-22 15:04:48 -05:00
|
|
|
"github.com/grafana/grafana/pkg/services/navtree"
|
2020-12-07 04:23:53 -06:00
|
|
|
"github.com/grafana/grafana/pkg/setting"
|
|
|
|
|
|
|
|
"html/template"
|
|
|
|
)
|
2020-11-12 05:29:43 -06:00
|
|
|
|
2015-11-20 02:43:10 -06:00
|
|
|
type IndexViewData struct {
|
2016-05-03 02:00:58 -05:00
|
|
|
User *CurrentUser
|
|
|
|
Settings map[string]interface{}
|
|
|
|
AppUrl string
|
|
|
|
AppSubUrl string
|
|
|
|
GoogleAnalyticsId string
|
2022-09-20 05:13:14 -05:00
|
|
|
GoogleAnalytics4Id string
|
2016-05-03 02:00:58 -05:00
|
|
|
GoogleTagManagerId string
|
2022-09-28 01:29:35 -05:00
|
|
|
NavTree *navtree.NavTreeRoot
|
2016-05-03 02:00:58 -05:00
|
|
|
BuildVersion string
|
|
|
|
BuildCommit string
|
2017-10-11 14:36:03 -05:00
|
|
|
Theme string
|
2016-05-03 02:00:58 -05:00
|
|
|
NewGrafanaVersionExists bool
|
|
|
|
NewGrafanaVersion string
|
2018-07-02 06:33:39 -05:00
|
|
|
AppName string
|
2018-10-31 15:40:58 -05:00
|
|
|
AppNameBodyClass string
|
2020-12-07 04:23:53 -06:00
|
|
|
FavIcon template.URL
|
|
|
|
AppleTouchIcon template.URL
|
2020-02-25 08:18:37 -06:00
|
|
|
AppTitle string
|
2020-11-12 05:29:43 -06:00
|
|
|
Sentry *setting.Sentry
|
2021-02-01 03:13:09 -06:00
|
|
|
ContentDeliveryURL string
|
2021-07-02 07:17:10 -05:00
|
|
|
LoadingLogo template.URL
|
2021-01-12 00:42:32 -06:00
|
|
|
// Nonce is a cryptographic identifier for use with Content Security Policy.
|
|
|
|
Nonce string
|
2015-11-20 02:43:10 -06:00
|
|
|
}
|