mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 19:17:48 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			308 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			308 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import { API } from 'widget/helpers/axios';
 | |
| 
 | |
| const buildUrl = endPoint => `/api/v1/${endPoint}${window.location.search}`;
 | |
| 
 | |
| export default {
 | |
|   create(label) {
 | |
|     return API.post(buildUrl('widget/labels'), { label });
 | |
|   },
 | |
|   destroy(label) {
 | |
|     return API.delete(buildUrl(`widget/labels/${label}`));
 | |
|   },
 | |
| };
 | 
