mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 20:48:07 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			281 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			281 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import { API } from 'widget/helpers/axios';
 | 
						|
 | 
						|
const buildUrl = endPoint => `/api/v1/${endPoint}${window.location.search}`;
 | 
						|
 | 
						|
export default {
 | 
						|
  update(identifier, userObject) {
 | 
						|
    return API.patch(buildUrl('widget/contact'), {
 | 
						|
      identifier,
 | 
						|
      ...userObject,
 | 
						|
    });
 | 
						|
  },
 | 
						|
};
 |