Merge pull request #28 from torjusti/fix/server-refactor

[WIP] Use Express instead of custom server, passport for auth and refactor server files

Remember: config.example.js changed!
This commit is contained in:
Stefan Otto
2018-07-23 13:51:35 +02:00
committed by GitHub
12 changed files with 3003 additions and 3241 deletions
-8
View File
@@ -15,7 +15,6 @@ const initialState =
webcamInProgress : false,
audioInProgress : false,
screenShareInProgress : false,
loginInProgress : false,
loginEnabled : false,
audioOnly : false,
audioOnlyInProgress : false,
@@ -124,13 +123,6 @@ const me = (state = initialState, action) =>
return { ...state, screenShareInProgress: flag };
}
case 'SET_LOGIN_IN_PROGRESS':
{
const { flag } = action.payload;
return { ...state, loginInProgress: flag };
}
case 'SET_DISPLAY_NAME':
{
let { displayName } = action.payload;