feat: implement organization insights dashboard with detailed metrics and collaboration data in sysadmin-cli

This commit is contained in:
2026-07-30 17:33:57 -03:00
parent 781310e36c
commit 146770a55d
14 changed files with 595 additions and 62 deletions
+2 -1
View File
@@ -1,10 +1,11 @@
import { Router } from "express";
import { paginate, setBanned, update } from "../controllers/companies.controller";
import { insights, paginate, setBanned, update } from "../controllers/companies.controller";
const router = Router();
router.post("/paginate", paginate);
router.post("/update", update);
router.post("/set-banned", setBanned);
router.post("/insights", insights);
export default router;