Просмотр исходного кода

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

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
ebagabee 1 месяц назад
Родитель
Сommit
c2cb7eb22c
1 измененных файлов с 6 добавлено и 0 удалено
  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;
+};