0365018e92
Moderators are able to send a message to the meeting's guest lobby. This new event reaches bbb-web and is sent to the guest user with her/his status response while polling. All guest users that are waiting for acceptance will be able to read this message. enableGuestLobbyMessage is disabled by default.
11 lines
407 B
JavaScript
11 lines
407 B
JavaScript
import { Meteor } from 'meteor/meteor';
|
|
import allowPendingUsers from '/imports/api/guest-users/server/methods/allowPendingUsers';
|
|
import changeGuestPolicy from '/imports/api/guest-users/server/methods/changeGuestPolicy';
|
|
import setGuestLobbyMessage from '/imports/api/guest-users/server/methods/setGuestLobbyMessage';
|
|
|
|
Meteor.methods({
|
|
allowPendingUsers,
|
|
changeGuestPolicy,
|
|
setGuestLobbyMessage,
|
|
});
|