mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 11:08:04 +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 });
 | |
|   },
 | |
| };
 | 
