Conference center raise hand feature (#5212)

* Update app_languages.php
* Update conference_interactive_inc.php
* Update conference_exec.php
* Create raise_hand.lua
* Update conference.conf
* Update app_languages.php
This commit is contained in:
hershyheilpern
2020-03-26 21:22:44 -06:00
committed by GitHub
parent bfc0b3279c
commit c1f47f31da
5 changed files with 45 additions and 4 deletions
@@ -0,0 +1,15 @@
--options are true and false and toggle
data = argv[1];
if (data == "toggle") then
data = session:getVariable("hand_raised")
if(data == "true")then
session:setVariable("hand_raised","false")
else
session:setVariable("hand_raised","true")
end
elseif(data == "true")then
session:setVariable("hand_raised","true")
elseif(data == "false")then
session:setVariable("hand_raised","false")
end