worked with socket for dashboard

This commit is contained in:
2025-06-02 11:20:00 +05:30
40 changed files with 1415 additions and 320 deletions

View File

@@ -1,14 +1,19 @@
let url_Backend_dwinzo = `http://${process.env.REACT_APP_SERVER_REST_API_BASE_URL}`;
export const viewProject = async (organization: string,projectId: string,userId: string) => {
export const viewProject = async (
organization: string,
projectId: string,
userId: string
) => {
try {
const response = await fetch(`${url_Backend_dwinzo}/api/v2/Project/${projectId}`,
const response = await fetch(
`${url_Backend_dwinzo}/api/V1/Project/${projectId}`,
{
method: "GET",
headers: {
Authorization: "Bearer <access_token>", // Replace with actual token
Authorization: "Bearer <access_token>", // Replace with actual token
"Content-Type": "application/json",
token: localStorage.getItem("token") || "", // Coerce null to empty string
token: localStorage.getItem("token") || "", // Coerce null to empty string
refresh_token: localStorage.getItem("refreshToken") || "",
},
}
@@ -24,4 +29,3 @@ export const viewProject = async (organization: string,projectId: string,userId:
throw new Error(error.message);
}
};