Re added raiseHand feature: still missing state on server side and display in participant list

This commit is contained in:
Stefan Otto
2018-07-25 15:12:31 +02:00
parent 4e1a4a9d4e
commit 19b1269dc3
7 changed files with 1170 additions and 1071 deletions
+12
View File
@@ -191,6 +191,18 @@ export const installExtension = () =>
};
};
export const toggleHand = (enable) =>
{
if (enable)
return {
type : 'RAISE_HAND'
};
else
return {
type : 'LOWER_HAND'
};
};
export const sendChatMessage = (text, name, picture) =>
{
const message = createNewMessage(text, 'response', name, picture);