This commit is contained in:
Oliver
2025-09-30 06:52:28 -03:00
parent 5735765ac8
commit 049fc274b0

View File

@@ -116,10 +116,10 @@ Please note: it does not cover general Odoo usage or functional questions.
<strong>Usage Tips:</strong>
<ul style="padding-left:20px; margin:8px 0; color:var(--muted);">
<li>
Click <strong>Create a Ticket</strong> or type <code>/ticket</code> to get in touch with our support team.
Type <code>/ticket</code> to get in touch with our support team.
</li>
<li>
<strong>Feature Requests</strong><br>
<strong>Feature Requests</strong><br>
Suggest a new feature for our services by leaving a comment in the chat using this format:<br>
<code>/feature: [Your description here]</code><br>
<em>Example:</em><br>
@@ -127,7 +127,7 @@ Please note: it does not cover general Odoo usage or functional questions.
</li>
</ul>
<div style="margin-top:10px;">
⚠️ <strong>Important:</strong> If you cannot access Odoo due to a Git change, you can easily <a href="/" style="color:inherit; text-decoration:underline;">revert the last change via our homepage</a>.
⚠️ <strong>Important:</strong> If you cannot access Odoo due to a Git change, you can easily <a href="https://ODOO4projects.com" style="color:inherit; text-decoration:underline;">revert the last change via our homepage</a>.
</div>
</div>
@@ -165,6 +165,7 @@ Please note: it does not cover general Odoo usage or functional questions.
const input = document.getElementById('messageInput');
const sendBtn = document.getElementById('sendBtn');
document.getElementById('webhook').textContent = WEBHOOK;
const uuid = params.get("uuid");
// Generate UUID once per page load
function generateUUID(){
@@ -279,7 +280,7 @@ Please note: it does not cover general Odoo usage or functional questions.
input.addEventListener('keydown', (e)=>{ if(e.key === 'Enter' && !e.shiftKey){ e.preventDefault(); sendMessage(); } });
// friendly welcome
appendMessage('I am here to help with all your hosting-related questions.Type /ticket to contact our support team directly.', 'them');
appendMessage('I am here to help with all your hosting-related questions.Type /ticket to contact our support team directly. Your UUID is '+uuid, 'them');
</script>
</body>
</html>