Browse Source

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

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
ebagabee 1 tháng trước cách đây
mục cha
commit
c2cb7eb22c
1 tập tin đã thay đổi với 6 bổ sung0 xóa
  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;
+};