From cd79e610e9a60e35fc8cd608e6b90c31cc149e90 Mon Sep 17 00:00:00 2001 From: cproudlock Date: Wed, 29 Jul 2026 15:16:16 -0400 Subject: [PATCH] printers: make the installer map public (no login) The /printer-installer map only reads the public install-list and downloads the install .bat - both jwt-optional endpoints - so requiring auth was an unnecessary gate. Drop requiresAuth; it now matches the other display/kiosk tools (public). --- plugins/printers/frontend/routes.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/plugins/printers/frontend/routes.js b/plugins/printers/frontend/routes.js index 90d3cea..a4c20b7 100644 --- a/plugins/printers/frontend/routes.js +++ b/plugins/printers/frontend/routes.js @@ -70,7 +70,10 @@ export const toplevel = [ path: '/printer-installer', name: 'printer-installer-map', component: () => import('./views/PrinterInstallerMap.vue'), - meta: { requiresAuth: true, plugin: 'printers' } + // Public: it only reads the public install-list + downloads the install + // .bat (both jwt-optional endpoints), so no login needed - same as the + // other display/kiosk tools. + meta: { plugin: 'printers' } }, { path: '/print/printer-qr',