mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 11:08:04 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			286 B
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			286 B
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
| import authEndPoint from 'widget/api/endPoints';
 | |
| import { API } from 'widget/helpers/axios';
 | |
| 
 | |
| export default {
 | |
|   update: ({ messageId, email }) => {
 | |
|     const urlData = authEndPoint.updateContact(messageId);
 | |
|     return API.patch(urlData.url, {
 | |
|       contact: { email },
 | |
|     });
 | |
|   },
 | |
| };
 | 
