mirror of
				https://github.com/aclindsa/moneygo.git
				synced 2025-11-03 18:13:27 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			365 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			365 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
var UserConstants = require('../constants/UserConstants');
 | 
						|
 | 
						|
var User = require('../models').User;
 | 
						|
 | 
						|
module.exports = function(state = new User(), action) {
 | 
						|
	switch (action.type) {
 | 
						|
		case UserConstants.USER_FETCHED:
 | 
						|
		case UserConstants.USER_UPDATED:
 | 
						|
			return action.user;
 | 
						|
		case UserConstants.USER_LOGGEDOUT:
 | 
						|
			return new User();
 | 
						|
		default:
 | 
						|
			return state;
 | 
						|
	}
 | 
						|
};
 |