auth + companies + invoice

This commit is contained in:
hamid zarghami
2025-05-18 12:41:42 +03:30
parent 8af0b9f9d9
commit 1b838e7a4d
85 changed files with 513 additions and 4635 deletions
+5 -3
View File
@@ -1,6 +1,8 @@
import axios from "../../../config/axios";
import danakAxios from "../../../config/axiosDanak";
export const getDashboard = async () => {
const { data } = await axios.get(`/dashboards/reports`);
export const getWorkspaces = async () => {
const { data } = await danakAxios.get(
`/subscriptions/workspaces/${import.meta.env.VITE_SERVICE_ID}`
);
return data;
};