Small fixes and requireSignIn now working.

This commit is contained in:
Håvar Aambø Fosstveit
2019-10-24 12:43:11 +02:00
parent 5adb08e184
commit f38c5e38c5
9 changed files with 127 additions and 38 deletions
+3 -2
View File
@@ -36,10 +36,11 @@ export const setRoomUnLocked = () =>
};
};
export const setRoomLockedOut = () =>
export const setInLobby = (inLobby) =>
{
return {
type : 'SET_ROOM_LOCKED_OUT'
type : 'SET_IN_LOBBY',
payload : { inLobby }
};
};