mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			298 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			298 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import { API } from 'widget/helpers/axios';
 | 
						|
import { buildSearchParamsWithLocale } from '../helpers/urlParamsHelper';
 | 
						|
 | 
						|
export default {
 | 
						|
  create(name) {
 | 
						|
    const search = buildSearchParamsWithLocale(window.location.search);
 | 
						|
    return API.post(`/api/v1/widget/events${search}`, { name });
 | 
						|
  },
 | 
						|
};
 |