audit and sync

This commit is contained in:
Lucas Tettamanti
2026-01-18 19:00:49 -03:00
parent 3b39e706af
commit 23c3d44490
9 changed files with 404 additions and 19 deletions

View File

@@ -179,4 +179,9 @@ export const api = {
body: JSON.stringify({ rules }),
}).then(r => r.json());
},
// Sync de emergencia desde WooCommerce
async syncFromWoo() {
return fetch("/products/sync-from-woo", { method: "POST" }).then(r => r.json());
},
};