Michael Woodsmall

Results 2 issues of Michael Woodsmall

In the following test case, it fails to determine the `input` action for the effect. ``` @Effect() test1$ = this.actions$ .pipe( ofType('LOGIN'), map(data => ({ type: 'LOGIN_SUCCESS', payload: data })),...

After successfully logging in, the user object returned is missing the `roles` attribute. This is causing this line to throw an error in the react native app: `const isAdmin: boolean...