Explorar o código

feat(financial): cliente de API da visão geral financeira

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
ebagabee hai 1 mes
pai
achega
c2cb7eb22c
Modificáronse 1 ficheiros con 6 adicións e 0 borrados
  1. 6 0
      src/api/unit_financial_dashboard.js

+ 6 - 0
src/api/unit_financial_dashboard.js

@@ -0,0 +1,6 @@
+import api from "src/api";
+
+export const getFinancialOverviewMe = async () => {
+  const { data } = await api.get("/unit-financial-dashboard/me");
+  return data.payload;
+};