[mirotalksfu] - add screen query param
هذا الالتزام موجود في:
@@ -171,9 +171,9 @@ app.get(['/newroom'], (req, res) => {
|
||||
app.get('/join/', (req, res) => {
|
||||
if (hostCfg.authenticated && Object.keys(req.query).length > 0) {
|
||||
log.debug('Direct Join', req.query);
|
||||
// http://localhost:3010/join?room=test&name=mirotalksfu&audio=1&video=1¬ify=1
|
||||
const { room, name, audio, video, notify } = req.query;
|
||||
if (room && name && audio && video && notify) {
|
||||
// http://localhost:3010/join?room=test&name=mirotalksfu&audio=1&video=1&screen=1¬ify=1
|
||||
const { room, name, audio, video, screen, notify } = req.query;
|
||||
if (room && name && audio && video && screen && notify) {
|
||||
return res.sendFile(view.room);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -31,6 +31,8 @@ module.exports = class ServerApi {
|
||||
data.audio +
|
||||
'&video=' +
|
||||
data.video +
|
||||
'&screen=' +
|
||||
data.screen +
|
||||
'¬ify=' +
|
||||
data.notify
|
||||
);
|
||||
|
||||
المرجع في مشكلة جديدة
حظر مستخدم