From ca3c3f78f63ff1fbb5804a23390e6cc6c6a0d748 Mon Sep 17 00:00:00 2001 From: Franklin Yu Date: Tue, 4 Jun 2024 06:22:45 -0700 Subject: [PATCH] fix(route/bugzilla): add missing prefix to example (#15818) --- lib/routes/bugzilla/bug.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/routes/bugzilla/bug.ts b/lib/routes/bugzilla/bug.ts index 202ccb648..afd82f3a3 100644 --- a/lib/routes/bugzilla/bug.ts +++ b/lib/routes/bugzilla/bug.ts @@ -9,6 +9,7 @@ const INSTANCES = new Map([ ['apache', 'bz.apache.org/bugzilla'], ['apache.ooo', 'bz.apache.org/ooo'], // Apache OpenOffice ['apache.SpamAssassin', 'bz.apache.org/SpamAssassin'], + ['kernel', 'bugzilla.kernel.org'], ['mozilla', 'bugzilla.mozilla.org'], ['webkit', 'bugs.webkit.org'], ]); @@ -42,7 +43,7 @@ export const route: Route = { name: 'bugs', maintainers: ['FranklinYu'], handler, - example: '/bug/webkit/251528', + example: '/bugzilla/bug/webkit/251528', parameters: { site: 'site identifier', bugId: 'numeric identifier of the bug in the site',