|
|
|
@@ -242,6 +242,25 @@ export default { |
|
|
|
|
|
|
|
onMounted(() => { |
|
|
|
getMeet(); |
|
|
|
if (!sessionStorage.getItem("logSent")) { |
|
|
|
axios |
|
|
|
.post( |
|
|
|
`${url}/auth-log`, |
|
|
|
{}, |
|
|
|
{ |
|
|
|
headers: { |
|
|
|
"Content-Type": "application/json", |
|
|
|
Authorization: `Bearer ${token} `, |
|
|
|
}, |
|
|
|
} |
|
|
|
) |
|
|
|
.then(() => { |
|
|
|
sessionStorage.setItem("logSent", "true"); |
|
|
|
}) |
|
|
|
.catch((err) => { |
|
|
|
console.error("خطا در ارسال لاگ:", err); |
|
|
|
}); |
|
|
|
} |
|
|
|
}); |
|
|
|
return { |
|
|
|
meets, |
|
|
|
|