- create guest lobby html page

This commit is contained in:
Richard Alam 2017-10-30 14:21:09 -07:00
parent 9f28f240a5
commit 0036b5734d
2 changed files with 20 additions and 1 deletions

View File

@ -0,0 +1,19 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>Guest Lobby</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</style>
<script type="text/javascript">
// TODO: Poll guestWaiting API to see if guest is allowed to join meeting.
</script>
</head>
<body>
<div id='banner'></div>
<div id="content">
<p> Please wait for a moderator to approve you joining the meeting. </p>
</div>
</body>
</html>

View File

@ -1392,7 +1392,7 @@ class ApiController {
redirectClient = false
} else if (guestWaitStatus.equals(GuestPolicy.DENY)) {
destUrl = meeting.getLogoutUrl()
msgKey = "guestDeny"
msgKey = "guestDenied"
msgValue = "Guest denied to join meeting."
}