[mirotalksfu] - fix typo [skip ci]

هذا الالتزام موجود في:
Miroslav Pejic
2025-08-17 13:25:39 +02:00
الأصل dd3dae1c32
التزام 907042a058
2 ملفات معدلة مع 5 إضافات و6 حذوفات

عرض الملف

@@ -76,6 +76,7 @@ function login() {
// Admin (has access to all rooms)
if (allowedRooms && allowedRooms.includes('*')) {
console.log('User detected with admin access!', allowedRooms);
loginForm.style.display = 'none';
joinRoomForm.style.display = 'block';
selectRoom.innerHTML = '';

عرض الملف

@@ -6,13 +6,11 @@ This example shows how to set up a server to listen for MiroTalk SFU webhook eve
### Step 1: Enable Webhooks
Edit `app/src/config.js` to enable webhooks:
Edit the `.env` to enable webhooks:
```javascript
webhook: {
enabled: true, // Enable webhook functionality
url: 'http://localhost:8888/webhook-endpoint', // Webhook server URL
},
```bash
WEBHOOK_ENABLED=true
WEBHOOK_URL=https://YOUR-DOMAIN-NAME/webhook-endpoint
```
---