Преглед изворни кода

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

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
ebagabee пре 1 месец
родитељ
комит
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;
+};