Files
crater/resources/assets/js/store/modules/auth/mutations.js
Mohit Panjwani bdf2ba51d6 init crater
2019-11-11 12:16:00 +05:30

23 lines
424 B
JavaScript

import * as types from './mutation-types'
export default {
[types.AUTH_SUCCESS] (state, token) {
state.token = token
state.status = 'success'
},
[types.AUTH_LOGOUT] (state) {
state.token = null
},
[types.AUTH_ERROR] (state, errorResponse) {
state.token = null
state.status = 'error'
},
[types.REFRESH_SUCCESS] (state, token) {
state.token = token
state.status = 'success'
}
}