From ca78c25e35891c0aa3bfbcb4e701ab19b4887c61 Mon Sep 17 00:00:00 2001 From: Jordan Dubrick Date: Fri, 17 Apr 2026 19:39:49 -0400 Subject: [PATCH 1/2] (fix): notebooks check to lowercase Signed-off-by: Jordan Dubrick --- workspaces/lightspeed/plugins/lightspeed-backend/src/plugin.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workspaces/lightspeed/plugins/lightspeed-backend/src/plugin.ts b/workspaces/lightspeed/plugins/lightspeed-backend/src/plugin.ts index 37a0dc23efc..a9bdf48e09e 100644 --- a/workspaces/lightspeed/plugins/lightspeed-backend/src/plugin.ts +++ b/workspaces/lightspeed/plugins/lightspeed-backend/src/plugin.ts @@ -63,7 +63,7 @@ export const lightspeedPlugin = createBackendPlugin({ ); const aiNotebooksEnabled = - config.getOptionalBoolean('lightspeed.Notebooks.enabled') ?? false; + config.getOptionalBoolean('lightspeed.notebooks.enabled') ?? false; if (aiNotebooksEnabled) { http.use( await createNotebooksRouter({ From 3c309c6d08afdd2c47021521a656a507b477cbb0 Mon Sep 17 00:00:00 2001 From: Jordan Dubrick Date: Fri, 17 Apr 2026 19:44:43 -0400 Subject: [PATCH 2/2] add changeset for notebooks casing fix Signed-off-by: Jordan Dubrick --- workspaces/lightspeed/.changeset/fair-rings-fetch.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 workspaces/lightspeed/.changeset/fair-rings-fetch.md diff --git a/workspaces/lightspeed/.changeset/fair-rings-fetch.md b/workspaces/lightspeed/.changeset/fair-rings-fetch.md new file mode 100644 index 00000000000..9f7d9210d32 --- /dev/null +++ b/workspaces/lightspeed/.changeset/fair-rings-fetch.md @@ -0,0 +1,5 @@ +--- +'@red-hat-developer-hub/backstage-plugin-lightspeed-backend': patch +--- + +change casing of notebooks to lowercase