From 65501cbad332a160a7bb3a6d40b66fdf9af0d3a0 Mon Sep 17 00:00:00 2001 From: Witek Bedyk Date: Wed, 25 Aug 2021 10:43:43 +0200 Subject: [PATCH] Licensing: Provide correct URL for AGPL license (#36917) * Provide correct link for AGPL license * Change LicenseURL to point go Grafana OSS page * Keep utm_source query parameter Co-authored-by: Marcus Efraimsson Co-authored-by: Marcus Efraimsson --- pkg/services/licensing/oss.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/services/licensing/oss.go b/pkg/services/licensing/oss.go index 1113ea933f0..5cb5a681b95 100644 --- a/pkg/services/licensing/oss.go +++ b/pkg/services/licensing/oss.go @@ -41,7 +41,7 @@ func (l *OSSLicensingService) LicenseURL(user *models.SignedInUser) string { return l.Cfg.AppSubURL + "/admin/upgrading" } - return "https://grafana.com/products/enterprise/?utm_source=grafana_footer" + return "https://grafana.com/oss/grafana?utm_source=grafana_footer" } func (l *OSSLicensingService) Init() error {