Support svg embedded favicons in whitelabeling (#29436)

* Fix favicon embedding in whitelabeling

* Fix formatting
pull/29596/head^2
Tania B 5 years ago committed by GitHub
parent 45c6daaf95
commit c869ae5791
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      pkg/api/dtos/index.go

@ -1,6 +1,10 @@
package dtos
import "github.com/grafana/grafana/pkg/setting"
import (
"github.com/grafana/grafana/pkg/setting"
"html/template"
)
type IndexViewData struct {
User *CurrentUser
@ -17,8 +21,8 @@ type IndexViewData struct {
NewGrafanaVersion string
AppName string
AppNameBodyClass string
FavIcon string
AppleTouchIcon string
FavIcon template.URL
AppleTouchIcon template.URL
AppTitle string
Sentry *setting.Sentry
}

Loading…
Cancel
Save