fix(dashboard): rename duplicate /api/browsers route to /api/browser-signatures

La route /api/browsers existait déjà (distribution JA4 par famille).
La nouvelle route du browser_matcher était en conflit — FastAPI utilisait
la première définition. Renommage en /api/browser-signatures.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
toto
2026-04-10 14:17:38 +02:00
parent 9c308747bd
commit da1b579d4f
2 changed files with 3 additions and 3 deletions

View File

@ -223,7 +223,7 @@
async function loadBrowserData() {
let data;
try {
const r = await fetch('/api/browsers');
const r = await fetch('/api/browser-signatures');
if (!r.ok) throw new Error(r.statusText);
data = await r.json();
} catch (e) {