46 lines
1.1 KiB
TypeScript
46 lines
1.1 KiB
TypeScript
let url_Backend_dwinzo = `http://${process.env.REACT_APP_SERVER_REST_API_BASE_URL}`;
|
|
// let url_Backend_dwinzo = `http://192.168.0.102:5000`;
|
|
|
|
export const editThreadTitleApi = async (
|
|
projectId: string,
|
|
threadId: string,
|
|
threadTitle: string,
|
|
versionId?: string
|
|
) => {
|
|
const body: any = {
|
|
projectId,
|
|
threadId,
|
|
threadTitle,
|
|
versionId,
|
|
};
|
|
|
|
try {
|
|
const response = await fetch(
|
|
`${url_Backend_dwinzo}/api/V1/Thread/updateTitle`,
|
|
{
|
|
method: "PATCH",
|
|
headers: {
|
|
Authorization: "Bearer <access_token>",
|
|
"Content-Type": "application/json",
|
|
token: localStorage.getItem("token") || "",
|
|
refresh_token: localStorage.getItem("refreshToken") || "",
|
|
},
|
|
body: JSON.stringify(body),
|
|
}
|
|
);
|
|
|
|
if (!response.ok) {
|
|
console.error("Failed to clearPanel in the zone");
|
|
}
|
|
|
|
const result = await response.json();
|
|
return result;
|
|
} catch (error) {
|
|
if (error instanceof Error) {
|
|
console.error(error.message);
|
|
} else {
|
|
console.error("An unknown error occurred");
|
|
}
|
|
}
|
|
};
|