From 2ce07a96a337bb84486897305bd4ea11e307a7a6 Mon Sep 17 00:00:00 2001 From: Andrew Donnellan Date: Wed, 10 Dec 2025 14:09:27 +1100 Subject: dashboard/app: fix comment reference to ExternalConfig struct Commit b190f060619b ("dashboard/app: fix testing for go1.11 runtime") removed the unused ExternalConfig struct. However, config.go still refers to ExternalConfig in a comment explaining how it can be used to attach to external reporting systems. Change this to say the user can implement their own type if they need. Signed-off-by: Andrew Donnellan --- dashboard/app/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dashboard/app') diff --git a/dashboard/app/config.go b/dashboard/app/config.go index 7f9885fd9..1b32d96a8 100644 --- a/dashboard/app/config.go +++ b/dashboard/app/config.go @@ -301,7 +301,7 @@ type Reporting struct { Embargo time.Duration // Type of reporting and its configuration. // The app has one built-in type, EmailConfig, which reports bugs by email. - // And ExternalConfig which can be used to attach any external reporting system (e.g. Bugzilla). + // The user can implement other types to attach to external reporting systems (e.g. Bugzilla). Config ReportingType // List of labels to notify about (keys are strings of form "label:value"). // The value is the string that will be included in the notification message. -- cgit mrf-deployment