13 lines
		
	
	
		
			334 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			334 B
		
	
	
	
		
			JavaScript
		
	
	
	
| import { fromJS } from 'immutable';
 | |
| 
 | |
| import { NOTIFICATION_POLICY_FETCH_SUCCESS } from 'flavours/glitch/actions/notifications';
 | |
| 
 | |
| export const notificationPolicyReducer = (state = null, action) => {
 | |
|   switch(action.type) {
 | |
|   case NOTIFICATION_POLICY_FETCH_SUCCESS:
 | |
|     return fromJS(action.policy);
 | |
|   default:
 | |
|     return state;
 | |
|   }
 | |
| };
 |