[mirotalksfu] - add missing param
هذا الالتزام موجود في:
@@ -60,7 +60,7 @@ module.exports = class ServerApi {
|
|||||||
|
|
||||||
getJoinURL(data) {
|
getJoinURL(data) {
|
||||||
// Get data
|
// Get data
|
||||||
const { room, roomPassword, name, audio, video, screen, notify, token } = data;
|
const { room, roomPassword, name, audio, video, screen, hide, notify, token } = data;
|
||||||
|
|
||||||
const roomValue = room || uuidV4();
|
const roomValue = room || uuidV4();
|
||||||
const nameValue = name || 'User-' + this.getRandomNumber();
|
const nameValue = name || 'User-' + this.getRandomNumber();
|
||||||
@@ -68,6 +68,7 @@ module.exports = class ServerApi {
|
|||||||
const audioValue = audio || false;
|
const audioValue = audio || false;
|
||||||
const videoValue = video || false;
|
const videoValue = video || false;
|
||||||
const screenValue = screen || false;
|
const screenValue = screen || false;
|
||||||
|
const hideValue = hide || false;
|
||||||
const notifyValue = notify || false;
|
const notifyValue = notify || false;
|
||||||
const jwtToken = token ? '&token=' + this.getToken(token) : '';
|
const jwtToken = token ? '&token=' + this.getToken(token) : '';
|
||||||
|
|
||||||
@@ -81,6 +82,7 @@ module.exports = class ServerApi {
|
|||||||
`&audio=${audioValue}` +
|
`&audio=${audioValue}` +
|
||||||
`&video=${videoValue}` +
|
`&video=${videoValue}` +
|
||||||
`&screen=${screenValue}` +
|
`&screen=${screenValue}` +
|
||||||
|
`&hide=${hideValue}` +
|
||||||
`¬ify=${notifyValue}` +
|
`¬ify=${notifyValue}` +
|
||||||
jwtToken;
|
jwtToken;
|
||||||
|
|
||||||
|
|||||||
المرجع في مشكلة جديدة
حظر مستخدم