chore(client-standalone): fake two more routes

This commit is contained in:
Elian Doran 2026-01-07 16:43:17 +02:00
parent 9e3b4435cd
commit 3e5a6c1e51
No known key found for this signature in database

View File

@ -49,6 +49,8 @@ export function registerRoutes(router: BrowserRouter): void {
apiRoute("get", "/api/script/startup", () => []);
apiRoute("get", "/api/system-checks", () => ({ isCpuArchMismatch: false }))
apiRoute("get", "/api/search/:searchString", () => []);
apiRoute("get", "/api/search-templates", () => []);
apiRoute("get", "/api/autocomplete", () => []);
}
function bootstrapRoute() {