2017-09-02 22:07:05 +00:00
|
|
|
import {
|
2017-09-18 19:43:09 +00:00
|
|
|
ReduxTokenAuthState
|
2017-09-02 22:07:05 +00:00
|
|
|
} from './types'
|
|
|
|
|
2017-09-18 19:43:09 +00:00
|
|
|
const initialState: ReduxTokenAuthState = {
|
2017-09-02 22:07:05 +00:00
|
|
|
currentUser: {
|
2017-09-16 17:01:40 +00:00
|
|
|
isSignedIn: false,
|
2017-09-02 22:07:05 +00:00
|
|
|
isLoading: false,
|
2017-09-28 17:51:49 +00:00
|
|
|
hasVerificationBeenAttempted: false,
|
2017-09-02 22:07:05 +00:00
|
|
|
attributes: {},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
export default initialState
|