more details with federation
Some checks failed
Build & Push Docker Image / build (push) Has been cancelled
Some checks failed
Build & Push Docker Image / build (push) Has been cancelled
This commit is contained in:
@@ -419,7 +419,7 @@ router.get('/:uid/public', async (req, res) => {
|
||||
try {
|
||||
const db = getDb();
|
||||
const room = await db.get(`
|
||||
SELECT r.uid, r.name, r.welcome_message, r.access_code,
|
||||
SELECT r.uid, r.name, r.welcome_message, r.access_code, r.record_meeting, r.max_participants, r.anyone_can_start,
|
||||
u.name as owner_name
|
||||
FROM rooms r
|
||||
JOIN users u ON r.user_id = u.id
|
||||
@@ -439,6 +439,9 @@ router.get('/:uid/public', async (req, res) => {
|
||||
owner_name: room.owner_name,
|
||||
welcome_message: room.welcome_message,
|
||||
has_access_code: !!room.access_code,
|
||||
allow_recording: !!room.record_meeting,
|
||||
max_participants: room.max_participants ?? 0,
|
||||
anyone_can_start: !!room.anyone_can_start,
|
||||
},
|
||||
running,
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user