aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard
diff options
context:
space:
mode:
authorAndrew Donnellan <ajd@linux.ibm.com>2025-12-10 14:09:27 +1100
committerAleksandr Nogikh <nogikh@google.com>2025-12-11 12:46:38 +0000
commit2ce07a96a337bb84486897305bd4ea11e307a7a6 (patch)
treecef6942e11d67efcb1736c8a811346d7a1689ab1 /dashboard
parentaa371f5c19d1696ae176d1a6a41cb239049b4584 (diff)
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 <ajd@linux.ibm.com>
Diffstat (limited to 'dashboard')
-rw-r--r--dashboard/app/config.go2
1 files changed, 1 insertions, 1 deletions
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.