Try logging in with the existing cookie.

This commit is contained in:
Roger Braun 2017-07-02 13:07:35 +02:00 committed by eal
parent 87b18da811
commit 8b4f59e1f7
3 changed files with 7 additions and 2 deletions

View file

@ -24,10 +24,12 @@ export const mutations = {
set(user, 'muted', muted)
},
setCurrentUser (state, user) {
state.lastLoginName = user.screen_name
state.currentUser = merge(state.currentUser || {}, user)
},
clearCurrentUser (state) {
state.currentUser = false
state.lastLoginName = false
},
beginLogin (state) {
state.loggingIn = true
@ -44,6 +46,7 @@ export const mutations = {
}
export const defaultState = {
lastLoginName: false,
currentUser: false,
loggingIn: false,
users: [],