mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-11-04 06:23:17 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			432 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			432 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import * as types from './mutation-types'
 | 
						|
 | 
						|
export default {
 | 
						|
  [types.AUTH_SUCCESS](state, token) {
 | 
						|
    state.token = token
 | 
						|
    state.status = 'success'
 | 
						|
  },
 | 
						|
 | 
						|
  [types.SET_LOGOUT](state, data) {
 | 
						|
    state.isLoggedOut = data
 | 
						|
  },
 | 
						|
 | 
						|
  [types.AUTH_ERROR](state, errorResponse) {
 | 
						|
    state.token = null
 | 
						|
    state.status = 'error'
 | 
						|
  },
 | 
						|
 | 
						|
  [types.REFRESH_SUCCESS](state, token) {
 | 
						|
    state.token = token
 | 
						|
    state.status = 'success'
 | 
						|
  },
 | 
						|
}
 |