mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-11-04 06:23:17 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			515 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			515 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import * as types from './mutation-types'
 | 
						|
 | 
						|
export default {
 | 
						|
  [types.RESET_CURRENT_USER](state, user) {
 | 
						|
    state.currentUser = null
 | 
						|
  },
 | 
						|
 | 
						|
  [types.BOOTSTRAP_CURRENT_USER](state, user) {
 | 
						|
    state.currentUser = user
 | 
						|
  },
 | 
						|
 | 
						|
  [types.UPDATE_CURRENT_USER](state, user) {
 | 
						|
    state.currentUser = user
 | 
						|
  },
 | 
						|
 | 
						|
  [types.UPDATE_USER_AVATAR](state, data) {
 | 
						|
    if (state.currentUser) {
 | 
						|
      state.currentUser.avatar = data.avatar
 | 
						|
    }
 | 
						|
  },
 | 
						|
 | 
						|
  [types.SET_DEFAULT_LANGUAGE](state, data) {
 | 
						|
    window.i18n.locale = data
 | 
						|
  },
 | 
						|
}
 |